My code is only returning the last output

조회 수: 7 (최근 30일)
Jackson
Jackson 2022년 10월 4일
답변: Samuele Gould 2022년 10월 4일
Trying to un-vectorize matsum = sum(mat') and having difficulty. My code only returns the sum of the last column, any tips?
numrows = size(mat,1);
newadd = 0;
for i = 1:numrows
vec = mat(i,end);
for j = 1:length(vec)
newadd = newadd + vec(j);
end
disp(mat)
disp(vec)
end

답변 (2개)

millercommamatt
millercommamatt 2022년 10월 4일
vec = mat(i,end);
In this line you're always using the last column by specifying end. I think you want:
vec = mat(i,:);
If I'm reading your code correctly, I think what you're ultimately looking for is:
vec = sum(mat(:));

Samuele Gould
Samuele Gould 2022년 10월 4일
I am not quite sure what you mean by un-vectorize, but if you want to find the sum of each column you can use the matlab function sum and specify the dimension (see the link).
The reason you are only getting the sum of the last column is because if mat is a n-by-m matrix, calling mat(i,end) will return the row i in the last column. To access all the columns you need mat(i,1:end).
numrows = size(mat,1);
newadd = 0;
for i = 1:numrows
vec = mat(i,end);
for j = 1:length(vec)
% returns the sum of all the elements of the matrix
newadd = newadd + vec(j);
end
disp(mat)
disp(vec)
end

카테고리

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

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by