My code is only returning the last output

6 ビュー (過去 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 Center および File ExchangeLogical についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by