help please why ??
조회 수: 4 (최근 30일)
이전 댓글 표시
A = [ 1 3 2 6 ; 5 7 7 0 ; -2 6 -2 1 ] ;
j = sum(A(1))
j= 1 why ???
댓글 수: 0
채택된 답변
Jim Riggs
2018년 2월 28일
the statement
sum(A(1))
is summing only the first element in A, which is 1.
If you want to sum the first row, it should be
sum(A(1,:))
and if you want to sum the first column, it is
sum (A(:,1))
댓글 수: 3
Jim Riggs
2018년 2월 28일
The matrix A is:
1 3 2 6
5 7 7 0
-2 6 -2 1
The first element in A is A(1) which is 1. So the statement
sum(A(1))
is the same as
sum(1)
and has a value of 1.
추가 답변 (1개)
elham kreem
2018년 2월 28일
WHAT are you want? IF YOU want to sum all the values then use Sum (A) BUt you sum the first element only. IF you help this answer then except to it.
참고 항목
카테고리
Help Center 및 File Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!