exiting code if condition is met

4 visualizaciones (últimos 30 días)
Max
Max el 11 de Nov. de 2015
Comentada: Thorsten el 12 de Nov. de 2015
I have written a bunch of code but I would like to ignore it if and a condition is met. so for
if length(dict)=1
newguess=dict
end
%bunch of code
I want to ignore all that code if my if statement is met and just stop if length(dict)=1

Respuesta aceptada

Thorsten
Thorsten el 11 de Nov. de 2015
if length(dict)=1
newguess=dict
else
%bunch of code
end
  3 comentarios
Thorsten
Thorsten el 12 de Nov. de 2015
n = numel(dict);
Thorsten
Thorsten el 12 de Nov. de 2015
n = numel(dict);

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre MATLAB 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