Effacer les filtres
Effacer les filtres

coding a conditional for loop

64 vues (au cours des 30 derniers jours)
K Kee
K Kee le 2 Nov 2015
I would like to know what code I need to write a conditional for loop. More specifically, I want to check a list of values to see if they make an equation > a certain number. Then I want to continue using the values that fit the condition in the rest of my code. If they don't fit the condition then I don't want them used. Can anybody help me with this?

Réponses (2)

Walter Roberson
Walter Roberson le 2 Nov 2015
MATLAB does not have conditional for loops. MATLAB does however support code of the form
if some condition
for variable = range
some statement
end
end
and
for variable = range
if some condition
some statement
end
end
The first one checks the condition once and if it is true then runs the entire for loop to completion and otherwise does not run the for loop at all. The second one runs the for loop and for each iteration of the loop tests the condition and if the condition is true executes the statement.
If you wish to exit a for loop early then you can use "break". For example,
for variable = range
t = cos(variable);
if t < -0.88
break
end
some statement
end
This would exit the for loop the first time that cos(variable) < -0.88
  2 commentaires
K Kee
K Kee le 2 Nov 2015
this is very helpful. what would go in the "statement" position?
Walter Roberson
Walter Roberson le 2 Nov 2015
What would go in the "statement" position is the using the values" part of "Then I want to continue using the values that fit the condition in the rest of my code"

Connectez-vous pour commenter.


William Gaillard
William Gaillard le 7 Mar 2019
Modifié(e) : William Gaillard le 7 Mar 2019
Couldn't you use a while loop to accomplish the same thing
  1 commentaire
Walter Roberson
Walter Roberson le 9 Mar 2019
When I re-read the question, it now looks to me as if the general form should be:
values_to_try = .... something appropriate
y = SomeFunction(values_to_try);
mask = y > a_certain_number;
selected_values = values_to_try(mask);
and then proceed to process selected_values

Connectez-vous pour commenter.

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by