WHILE loop with a condition on a vector?
14 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
SYED GILLANI
am 20 Okt. 2016
Bearbeitet: James Tursa
am 20 Okt. 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
0 Kommentare
Akzeptierte Antwort
James Tursa
am 20 Okt. 2016
Bearbeitet: James Tursa
am 20 Okt. 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
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!