best way to enter only one time in a if block
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I have a for cycle
for n= 1: 100
x=rand()*10;
if x > 5
do something
end
end
When I execute this cycle it happens that if x is major than 5, the program enter in if clause. I would create a way that enter in if clause only one time even if the condition is true.which could be the best way?In Java I'd created this using boolean but matlab doesn't have boolean type
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 16 de Sept. de 2012
Editada: Azzi Abdelmalek
el 16 de Sept. de 2012
test=0
for n= 1: 100
x=rand()*10;
if x > 5 & test==0
%do something
test=1
end
end
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Testing Frameworks 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!