invalid expression in the for loop

조회 수: 5 (최근 30일)
OYH
OYH 2019년 11월 22일
답변: Walter Roberson 2019년 11월 22일
Screen Shot 2019-11-22 at 11.12.26.png
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

채택된 답변

Walter Roberson
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개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by