Filter löschen
Filter löschen

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

2 Ansichten (letzte 30 Tage)
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?

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 27 Nov. 2017
[~, binnum] = histc(faces, [pt_indices, inf]);
faces = faces - binnum;

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by