Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
can someone help me convert the for loop to a while loop
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
function [ cumsum ] = q2(v) n = length(v); cumsum = zeros(1,n); for ii = 1:n if ii == 1 cumsum(ii) = v(ii); else cumsum(ii) = cumsum(ii-1)+v(ii); end end end
1 Kommentar
Antworten (0)
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!