1

我有一些二进制矩阵。我想从每列中删除所有第一个,但one如果该值在列中单独存在,请保留。我有一些代码可以产生正确的结果,但看起来很难看——我应该遍历所有列。

你能给我一些建议如何改进我的代码吗?

非向量化代码:

% Dummy matrix for SE
M = 10^3;
N = 10^2;
ExampleMatrix = (rand(M,N)>0.9);
ExampleMatrix1=ExampleMatrix;
% Iterate columns
for iColumn = 1:size(ExampleMatrix,2)
    idx = find(ExampleMatrix(:,iColumn)); % all nonzeroes elements
    if numel(idx) > 1
        % remove all ones except first
        ExampleMatrix(idx(1),iColumn) = 0;
    end
end
4

1 回答 1

1

我认为这可以满足您的要求:

ind_col = find(sum(ExampleMatrix, 1)>1); % index of relevant columns
[~, ind_row] = max(ExampleMatrix(:,ind_col), [], 1); % index of first max of each column
ExampleMatrix(ind_row + (ind_col-1)*size(ExampleMatrix,1)) = 0; % linear indexing

该代码使用:

  • max的第二个输出给出第一个最大值的索引的事实。在这种情况下max,沿第一个维度应用,以找到每列的第一个最大值;
  • 线性索引
于 2018-02-06T22:19:28.343 回答