Matrix calculation, sum of two rows in each column

3 ビュー (過去 30 日間)
monmatlab
monmatlab 2016 年 12 月 20 日
コメント済み: Andrei Bobrov 2016 年 12 月 20 日
I have a matrix d and I want to calculate for every column the sum of each to numbers. The Result should be the result matrix
d= 2 3 7
6 7 8
9 1 5
4 3 5
6 7 8
2 3 6
result= 8 10 15
13 4 10
8 10 14
result=[];
[x,y]=size(d);
for y=1:length(d(:,y))
for x=1:2:length(d(x,:))
[x,y]=size(d);
res=d(x)+d(x+1);
result=[result res];
end
end
I just get a vector consisting of 5. What should I change in the code? Thank you!
  1 件のコメント
Jos (10584)
Jos (10584) 2016 年 12 月 20 日
I suggest you debug your code, tracing each step. the variables x and y may not behave as you expect.

サインインしてコメントする。

採用された回答

Andrei Bobrov
Andrei Bobrov 2016 年 12 月 20 日
d= [ 2 3 7
6 7 8
9 1 5
4 3 5
6 7 8
2 3 6];
result = squeeze(sum(reshape(d',size(d,2),2,[]),2))';
  4 件のコメント
monmatlab
monmatlab 2016 年 12 月 20 日
編集済み: monmatlab 2016 年 12 月 20 日
d1=d2:2:end,:).*3;
d(2:2:end,:)=d1
result = squeeze(sum(reshape(d',size(d,2),2,[]),2))';
I have managed to do it this way
Andrei Bobrov
Andrei Bobrov 2016 年 12 月 20 日
for 2016b
result = squeeze(sum(reshape(d',size(d,2),2,[]).*[1,3],2))'

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by