使用accumarray在Matlab中对数据求和

Nat*_*lia 2 matlab matrix accumarray

我有一个像这样的矩阵:

>>D=[1,0,10;3,1,12;3,1,12.5;6,1,6;6,2,11.1;]
D =

1.0000         0   10.0000
3.0000    1.0000   12.0000
3.0000    1.0000   12.5000
6.0000    1.0000    6.0000
6.0000    2.0000   11.1000
Run Code Online (Sandbox Code Playgroud)

如果第一列的数据相同,我想得到第二列数据的总和.例如,我想要:

E=
1.0000         0
3.0000    2.0000
6.0000    3.0000
Run Code Online (Sandbox Code Playgroud)

所以我试过了

b = accumarray(D(:,1),D(:,2),[],[],[],true);
[i,~,v] = find(b);
E = [i,v]
Run Code Online (Sandbox Code Playgroud)

但它不起作用.我该怎么办?

Div*_*kar 5

使用的组合uniqueaccumarray这样-

[unique_ids,~,idmatch_indx] = unique(D(:,1)); 
%// unique_ids would have the unique numbers from first column and only 
%// used to get the first column of final output, E. 
%// idmatch_indx are tags put on each element corresponding to each unique_ids
%// based on the uniqueness

%// Accumulate and perform summation of elements from second column of D using
%// subscripts from idmatch_indx
E = [unique_ids accumarray(idmatch_indx,D(:,2))]
Run Code Online (Sandbox Code Playgroud)

随着accumarray你一般都需要输入你想上积累的元素使用功能,而是@sum成为默认功能,就可以把它离开了这种情况.