0
我有下面的代碼被執行數千次。通過使用Profiler,我將第二行(new_inds=...
)標識爲整個代碼中最耗時的行。有沒有更好/更快的方法來做這個操作?在Matlab中加快索引查找的好做法是什麼?
for j=1:length(cls)
new_inds=[sti(:).time]==i & [sti(:).cluster]==cls(j);
% more code here
%
%
prob(j)=...
end
pr=prod(prob);