How can I generalize this for loop?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
My question is easy. How can I generalize this for loop?
-----------------------
for i=1:r
t(1)=(d(1))/total
t(2)=(d(2)+d(1))/total
t(3)=(d(3)+d(2)+d(1))/total
t(4)=(d(4)+d(3)+d(2)+d(1))/total
.
.
.
end
------------------------
0 commentaires
Réponse acceptée
Plus de réponses (2)
Chandrasekhar
le 12 Juil 2013
sum = 0;
for I = 1:r
sum = sum + d(I);
t(i) = sum/total;
end
0 commentaires
Voir également
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!