Borrar filtros
Borrar filtros

How can I skip right to the end of a script?

24 visualizaciones (últimos 30 días)
Bogdan
Bogdan el 13 de Abr. de 2016
Comentada: Bogdan el 14 de Abr. de 2016
Hello!
I have a problem with a MATLAB script which I don't know how to fix it.
I am in the middle of the script and I need for it to jump straight to the end of it. There is no equivalent for goto in MATLAB so this is out of the question and, right now, rewriting the code is not an option.
A piece of the source is this:
if (i==m_sonde-1)
(....)
BC=sqrt((YB-YC)*(YB-YC)+(XB-XC)*(XB-XC));
BPBC=sqrt((YB-yPBC)*(YB-yPBC)+(XB-xP)*(XB-xP));
vPBC=vB+BPBC/BC*(vC-vB);
% *Here* I need to exit the program
end
How do I do it?

Respuesta aceptada

Kuifeng
Kuifeng el 13 de Abr. de 2016
help break %does this help?
  3 comentarios
Kuifeng
Kuifeng el 14 de Abr. de 2016
Thank you Jeremy.
Bogdan
Bogdan el 14 de Abr. de 2016
Yes, "return" was the correct answer.
Thank you very much!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by