Invalid use of operator in for loop

20 visualizaciones (últimos 30 días)
Anon
Anon el 22 de Dic. de 2020
Comentada: Anon el 23 de Dic. de 2020
Why am i getting an error message for this?
(am i also correct in using the '||' to mean 'or'?)
theta0 = tand(v0y/v0x)
for theta0 > 90 || theta0 < 0
% where the '>' gives an error message
end
if i switch the positions of the 'theta0 <0' and 'theta0 > 90' then i will get an error for the '<'
(whichever comes first has the error message)

Respuesta aceptada

Joseph Wilson
Joseph Wilson el 22 de Dic. de 2020
theta0 = tand(v0y/v0x)
while theta0 > 90 || theta0 < 0
% where the '>' gives an error message
end
Changing this to a while loop should fix your issue. A for loop counts for a specified number of iterations, the while loop iterates while some condition is met. So for your case you want this loop to run while theta0 is greater than 90 or less than 0. when that condition is no longer true, then the loop ends. Need to make sure that the code inside the loop changes theta0 or it will loop forever. If your do not plan on changing theta0 inside the loop, then Paul is correct above with using an if statement.

Más respuestas (1)

Paul
Paul el 22 de Dic. de 2020
You're geting the error because that's the wrong syntax for a for loop:
doc for
Having said that, it kind of looks like you really want an if statement:
doc if

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by