invalid expression in the for loop
조회 수: 5 (최근 30일)
이전 댓글 표시
So, this is the project that I'm working on right now. And the problem is the for loop. It gets error message saying.Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise, check for mismatched delimiters.
I don't know what is the wrong part.
Also, one can give some suggestion for my code if it is really clumpsy.
Really appreciate if someone can help
댓글 수: 0
채택된 답변
Walter Roberson
2019년 11월 22일
You are missing a ) after the / in the line you indicate. Count the brackets
(1+(velocity(1,i)^2).^(3/2)
1 2 3 2 1 2 1
You need one more ) character.
I suspect you could instead use
(1+velocity(1,i)^2).^(3/2)
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!