how to sum every each rows on matrix

조회 수: 3 (최근 30일)
Risma Fitriyani
Risma Fitriyani 2022년 12월 27일
댓글: Image Analyst 2022년 12월 27일
i have size matrix 5x25, i want to sum every each rows and the output would be 5x1 matrix. how to do that? thanks in advance

채택된 답변

Rik
Rik 2022년 12월 27일
편집: Rik 2022년 12월 27일
You can use the sum function:
data=rand(5,25);
sum(data,2)
ans = 5×1
13.3903 13.2063 14.1058 14.1462 11.5026
  댓글 수: 1
Image Analyst
Image Analyst 2022년 12월 27일
@Risma Fitriyani To learn other fundamental concepts, invest 2 hours of your time here:

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

추가 답변 (0개)

카테고리

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