How to sum some columns of a matrix?

조회 수: 29 (최근 30일)
Alvaro
Alvaro 2017년 6월 1일
편집: Chris Howard 2022년 5월 6일
Hi,
I am trying to add values in a matrix that each is identified as I(x,y).
What I need to do is to sum some columns and put them into a new matrix. For example, I want to add I(x1,y1)+I(x1,y2)+I(x1,y3) and put it in first column first row of the new matrix. Then add I(x2,y1)+I(x2,y2)+I(x2,y3) and put this value on the first column second row of the new matrix while keeping the other columns of the matrix the same... and so on.
For example:
A=[1 2 3 4; 5 6 7 8; 9 10 11 12; 13 14 15 16];
% sum columns 2 and 3 in B
% B=[1 5 4; 5 13 8; 9 21 12; 13 29 16]
Can anyone help me with this please?
All the best Alvaro

채택된 답변

the cyclist
the cyclist 2017년 6월 1일
A=[1 2 3 4; 5 6 7 8; 9 10 11 12; 13 14 15 16];
B = [A(:,1) sum(A(:,[2 3]),2) A(:,4)]
  댓글 수: 2
Alvaro
Alvaro 2017년 6월 1일
Thank you! I have lost a lot of time trying to solve something easy
Chris Howard
Chris Howard 2022년 5월 6일
편집: Chris Howard 2022년 5월 6일
Uddipan would be proud...

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

추가 답변 (1개)

Andrei Bobrov
Andrei Bobrov 2017년 6월 1일
B = blockproc(padarray(A,[0,1],0),[1,2],@(x)sum(x.data,2))

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by