필터 지우기
필터 지우기

Sum of each row?

조회 수: 3 (최근 30일)
Serra Aksoy
Serra Aksoy 2020년 2월 8일
댓글: Serra Aksoy 2020년 2월 9일
Hi,
I have a set
A=ones(2,3,4);
Here,
val(:,:,1) =
1 1 1
1 1 1
val(:,:,2) =
1 1 1
1 1 1
....
I want to create a matrix whose elements are the sum of each row of A.
The sum of the first row of val(:,:,1) should be a11 in A.
The sum of the second row of val(:,:,1) should be a12 in A.
The sum of the first row of val(:,:,2) should be a21 in A.
The sum of the second row of val(:,:,2) should be a22 in A....
How can i form this 4x2 matrix ?
Thanks in advance.

채택된 답변

Adam Danz
Adam Danz 2020년 2월 8일
편집: Adam Danz 2020년 2월 8일
A = reshape(1:24,2,3,4); % input: [n x m x k] array
val = squeeze(sum(A,2)).'; % output: [k x n] matrix
  댓글 수: 3
Stephen23
Stephen23 2020년 2월 9일
편집: Stephen23 2020년 2월 9일
Using squeeze is very fragile because it's output changes completely when some dimension's size happens to be one. The simple and robust alternative is to use permute (which also requires fewer operations than the above answer):
>> permute(sum(A,2),[3,1,2])
ans =
9 12
27 30
45 48
63 66
Serra Aksoy
Serra Aksoy 2020년 2월 9일
For my problem, both of the codes solved it well. Thank you for your clear explanation.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by