summation of array elements
1 次查看(过去 30 天)
显示 更早的评论
I have an array of say 5 elements and I want to run a loop and find the cumulative sum till the ith iteration eg.
array if f=[1 2 3 4 5]
so in the first iteration sum should be 1,in the 2nd it should be 3,in the third it should be 6 and so on...
what is the most efficient way to do this?
thanks in advance:]
0 个评论
采纳的回答
Azzi Abdelmalek
2015-6-22
编辑:Azzi Abdelmalek
2015-6-22
f=[1 2 3 4 5];
out=cumsum(f)
4 个评论
Guillaume
2015-6-22
or just iterate over the cumsum
f = [1 2 3 4 5]
for s = cumsum(f)
%do something with s
end
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!