problem of for loop
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
this is my programme
for k=1:10
x(k)=sin(k)
end
now i want to add all the 10 values together
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 9 Sep 2013
Modifié(e) : Azzi Abdelmalek
le 9 Sep 2013
If you mean to sum all the values use
for k=1:10
x(k)=sin(k)
end
out=sum(x)
%or without a for loop
k=1:10
x=sin(k)
out=sum(x)
Plus de réponses (0)
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!