How do i break a loop at set values to NaN
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
william Smith
el 5 de Abr. de 2019
Editada: per isakson
el 6 de Abr. de 2019
I need to break a loop when i reach values if alpha<-pi or apha>pi and set values for alpha and x(direction) to NaN, this is not working, please adivse
if alpha(i)<(-pi)||alpha(i)>(pi)
break
x(i+1:end)=NaN;
alpha(i+1:end)=NaN;
end
0 comentarios
Respuesta aceptada
per isakson
el 6 de Abr. de 2019
Try
if alpha(i)<(-pi)||alpha(i)>(pi)
x(i+1:end)=NaN;
alpha(i+1:end)=NaN;
break
end
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements 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!