cumsum of a matrix

조회 수: 1 (최근 30일)
Mate 2u
Mate 2u 2012년 5월 25일
편집: Muhammad Furqan 2017년 10월 25일
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?

답변 (2개)

Wayne King
Wayne King 2012년 5월 25일
X = 1:100;
X = reshape(X,10,10);
X1 = cumsum(X(:));

the cyclist
the cyclist 2012년 5월 25일
Is this what you mean?
M = rand(5,6);
S = sum(cumsum(M),2);
  댓글 수: 1
Muhammad Furqan
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 CenterFile Exchange에서 Fourier Analysis and Filtering에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by