While loop with all elements meeting the conditions

4 Ansichten (letzte 30 Tage)
Niklas Kurz
Niklas Kurz am 28 Okt. 2022
Kommentiert: Niklas Kurz am 28 Okt. 2022
How do I set a while loop that runs until all elements meet the condition? For instance:
t = -100:200;
F = t;
indices = 1:100;
while F(indices) < 0 %
indices = indices + 1;
end
This while-loop only will run, until one of the elements of F(indices) will be creater than 0. However I wish it will run until all of the elements will meet the condition. How to implement this?

Akzeptierte Antwort

Davide Masiello
Davide Masiello am 28 Okt. 2022
Bearbeitet: Davide Masiello am 28 Okt. 2022
t = -100:200;
F = t;
indices = 1:100;
while all(F(indices)<0)
indices = indices + 1;
end
  4 Kommentare
Davide Masiello
Davide Masiello am 28 Okt. 2022
Yes, @Torsten is correct, I did not properly understand the question before.
Niklas Kurz
Niklas Kurz am 28 Okt. 2022
Awesome, thank you so much!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by