我想在matlab中对表格进行小计。如果两列的值相等,则取值,如果有条目则相加。
举个例子,源矩阵如下:
A = [1 2 3;
1 2 2;
1 4 1;
2 2 1;
2 2 3];
输出将如下所示:
B = [1 2 5;
1 4 1;
2 2 4];
如果前两列相等,则对第三列求和。有没有一种简单的方法,无需循环多次?
您可以使用 和 的组合来做到这unique
一点accumarray
:
%# find unique rows and their corresponding indices in A
[uniqueRows,~,rowIdx]=unique(A(:,1:2),'rows');
%# for each group of unique rows, sum the values of the third column of A
subtotal = accumarray(rowIdx,A(:,3),[],@sum);
B = [uniqueRows,subtotal];
您可以使用unique
获取所有组,然后splitapply
将它们相加
[u, ~, iu] = unique( A(:,1:2), 'rows' ); % Get unique rows & their indices
sums = splitapply( @sum, A(:,3), iu ); % Sum all values according to unique indices
output = [u, sums]
% >> output =
% output =
% 26 7 124
% 26 8 785
% 27 7 800
这是一个迟到的答案,因为刚刚提出了一个重复的问题,所以我在这里发布了。请注意,这splitapply
是在 R2015b 中引入的,因此在accumarray
发布解决方案时并不存在。