我有一个 256 x 256 的矩阵 M,并产生了一些线性索引 L。

此外,我有一个权重向量,与 L 的数字相同,要添加到由 L 索引的 M 元素中。
问题是,用表达式

M(L) = M(L) + weights;

对于 L 中的重复值,只会添加权重中的最后一个对应元素。

有没有一种简单的方法可以解决这个问题/我是否遗漏了什么?

最佳答案

我认为去这里的方法是使用 accumarray:

% The 'data'
M = zeros(10,5); % Suppose this is your matrix
L = [46 47 47 46 48 49 48 48 48]'; % The linear index numbers
weights = [4 7 4 6 4 9 48 8 48]'; % The weights for these index numbers

% Make sure the indices are in ascending order
Y = SORTROWS([L weights]);

% Determining the weights to be added
idx = unique(Y(:,1));
weights_unique = accumarray(Y(:,1),Y(:,2));

% The addition
M(idx) = M(idx) + weights_unique(weights_unique>0);

关于matlab - 通过线性索引添加,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13599688/

10-12 23:50