Why do I get error when using a simple global variable?

조회 수: 5 (최근 30일)
Merve Özkanat
Merve Özkanat 2022년 9월 27일
답변: Chunru 2022년 9월 27일
I get error and it says ''Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise, check for mismatched delimiters''
global a b t E nu
GP1=(-a/(sqrt(3),-b/(sqrt(3))
GP2=(a/(sqrt(3),-b/(sqrt(3))
GP3=(a/(sqrt(3),b/(sqrt(3))
GP4=(-a/(sqrt(3),b/(sqrt(3))

답변 (1개)

Chunru
Chunru 2022년 9월 27일
Not sure what the code is trying to do. However, the error is due to the wrong usage of ( ) rather than global variables.
global a b t E nu
a=1; b=2; t=3; nu=4;
GP1=[-a/sqrt(3),-b/sqrt(3)]
GP1 = 1×2
-0.5774 -1.1547
GP2=[a/sqrt(3),-b/sqrt(3)]
GP2 = 1×2
0.5774 -1.1547
GP3=[a/sqrt(3),b/sqrt(3)]
GP3 = 1×2
0.5774 1.1547
GP4=[-a/sqrt(3),b/sqrt(3)]
GP4 = 1×2
-0.5774 1.1547

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by