WHILE loop with a condition on a vector?

7 ビュー (過去 30 日間)
SYED GILLANI
SYED GILLANI 2016 年 10 月 20 日
編集済み: James Tursa 2016 年 10 月 20 日
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

採用された回答

James Tursa
James Tursa 2016 年 10 月 20 日
編集済み: James Tursa 2016 年 10 月 20 日
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 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by