WHILE loop with a condition on a vector?

4 visualizaciones (últimos 30 días)
SYED GILLANI
SYED GILLANI el 20 de Oct. de 2016
Editada: James Tursa el 20 de Oct. de 2016
Hi all. I actually want to run the while loop until the absolute value of all the elements of a vector get equal to a certain value. just like below
while abs(vector_a(4,1) =< 0.00001 % run the instructions until absolute value of all elements of vector "a" are less than or equal to 0.00001
do the following instruction.........
end

Respuesta aceptada

James Tursa
James Tursa el 20 de Oct. de 2016
Editada: James Tursa el 20 de Oct. de 2016
Like this?
while any(~(abs(vector_a) <= 0.00001))
% do stuff
end
Or this (but will not get the same result if there are NaN's):
while any(abs(vector_a) > 0.00001)
% do stuff
end

Más respuestas (0)

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!

Translated by