How do i fix line13; Parse error at'=': usage might be invaild Matlab syntax? why it gives error ?

조회 수: 2 (최근 30일)
I do not know why it gives red line under it i cant find where i did wrong ?

채택된 답변

Steven Lord
Steven Lord 2021년 10월 19일
If you want to call max with two output arguments you need to combine lines 12 and 13 together and add square brackets. Use this:
[valueMax, iMax] = max(heuristicValues); % Works
instead of
valueMax,iMax
= max(heuristicValues); % DOES NOT work
Alternately add the square brackets and then use the same approach with the ellipsis that you did to break the assignment statement on lines 8 and 9 across two lines. So this would also work:
[valueMax,iMax] ...
= max(heuristicValues); % Works
My personal preference would be the first approach, the whole statement on one line, unless that results in a really long line that would require my Editor window to be very wide to see the whole line. In that case I'd probably leave the equals sign on the line with the output arguments and put the max call on its own on a second line.

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by