Problem adding components of a vector using a while loop
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Mary Jeppson
am 11 Mai 2016
Kommentiert: Mary Jeppson
am 12 Mai 2016
Can anyone tell me what's wrong with this code?
x = [1 23 43 72 87 56 98 33];
b = 0;
k = 1;
while k<=length(x)
b = b+k(x)
k = k+1
end
I get index exceeds matrix dimensions. Thank you very much for your help
Akzeptierte Antwort
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Matrix Indexing 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!