フィルターのクリア

How can I make the following for loop faster without exceeding the memory limit?

2 ビュー (過去 30 日間)
EX.
% remove these indices from faces (really long array)
pt_indices = [1 357 472 10035 ...];
faces = N x 3 matrix (extremely large matrix)
% reverse order so indices to be removed do not change
for i = length(pt_indices):-1:1
sel = faces>pt_indices(i);
faces(sel) = faces(sel) - 1; % adjust face indices
end
I tried to convert the for loop to a matrix operation but it exceeded the memory limit. Is there another way to speed this up?

採用された回答

Walter Roberson
Walter Roberson 2017 年 11 月 27 日
[~, binnum] = histc(faces, [pt_indices, inf]);
faces = faces - binnum;

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by