problem of for loop
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
this is my programme
for k=1:10
x(k)=sin(k)
end
now i want to add all the 10 values together
0 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 9 Sep. 2013
Bearbeitet: Azzi Abdelmalek
am 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)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!