can someone help me convert the for loop to a while loop
Info
This question is closed. Reopen it to edit or answer.
Show older comments
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 Comment
Stephen23
on 9 Nov 2016
Answers (0)
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!