cumsum of a matrix
1 次查看(过去 30 天)
显示 更早的评论
Hi there I have a nxm matrix. I want to do the cumsum of each column, then all of them added up to give one total cumsum.
Any help?
0 个评论
回答(2 个)
the cyclist
2012-5-25
Is this what you mean?
M = rand(5,6);
S = sum(cumsum(M),2);
1 个评论
Muhammad Furqan
2017-10-25
编辑:Muhammad Furqan
2017-10-25
M = rand(5,6); Mean that it creates random numbers of a matrix with 5 column and 6 rows. S = sum(cumsum(M),2); It generate commulative sum of the rows in one column. For example M = rand(2,3);
S = sum(cumsum(M),2); 1.02263280043603 2.03657698954441
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Fourier Analysis and Filtering 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!