Change step value within a for loop.
Afficher commentaires plus anciens
Hi
for i = 1:10
i
i = 6;
end
what I'm trying to do is let i = 1, 6, 7, 8, 9,10, but instead, MATLAB shows that 1,2,3,4,5,6,7,8,9,10. is there any way to do that? I'm aware that in a for loop, the "end" will reset the step value. Please help me to solve this problem
Réponses (1)
Azzi Abdelmalek
le 26 Juil 2016
Modifié(e) : Azzi Abdelmalek
le 26 Juil 2016
for i = [1 6:10]
y=i
end
2 commentaires
Keqiao Li
le 26 Juil 2016
Modifié(e) : Azzi Abdelmalek
le 26 Juil 2016
Azzi Abdelmalek
le 26 Juil 2016
If you want i = 1,6,19,30, 61,89,100 then write
i = [1,6,19,30, 61,89,100]
I don't understand what is your problem with that. It don't work like you are asking, because this is how for loop works in Matlab !
Catégories
En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!