I have Parse error at '<' :usage might be invalid syntax

2 Ansichten (letzte 30 Tage)
Nguyen Hung
Nguyen Hung am 10 Okt. 2017
Beantwortet: Walter Roberson am 10 Okt. 2017
Here is my code
for j < maxc

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 10 Okt. 2017
You are using C or C++ syntax. MATLAB syntax is either
for variable = expression
or
while expression
You should probably be using
for j = 1 : maxc
or possibly
for j = 1 : maxc - 1

Weitere Antworten (1)

Community Treasure Hunt

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

Start Hunting!

Translated by