Effacer les filtres
Effacer les filtres

Am i correct with my conversion of a Logical indexing to a for loop?

2 vues (au cours des 30 derniers jours)
Zachary Holmes
Zachary Holmes le 2 Déc 2015
Logical indexing is:
T ( T > 10) = 10;
My Loop is:
for (T>10)
T = 10?
Also how could i do a while loop?
thanks

Réponses (2)

Walter Roberson
Walter Roberson le 2 Déc 2015
Your loop variable should be over all the valid indices of the array, and inside the loop you should have a test that decides what to do.
Once you understand while loops from your other questions you should be able to do the conversion for this question as well.

Thorsten
Thorsten le 2 Déc 2015
for i = find(T > 10)
T(i) = 10;
end

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