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