- unique already returns a sorted output, so calling sort will waste time.
- duplicating data into lessnum and greaternum likely wastes memory.
- duplicating exactly the same equivalence operations (e.g. indexing inside the loop).
Match each element of one array with each element of other array without loops
1 次查看(过去 30 天)
显示 更早的评论
Hello,
I want to match each element of one array with elements of the other array say "cc". Then multiply with a number from the third array. I am doing using loops. The length of arrays are very large therefore it takes couple of hours. Is it possible to do wihtout loops or make it faster. Here is the code, I am doing,
uniquec=sort(unique(cc));
maxc=max(uniquec);
c35p=0.35*maxc;
g=2;
lessnum=uniquec(uniquec<=c35p);
greaternum=uniquec(uniquec>c35p);
gl=linspace(1,2,length(lessnum));
gr=linspace(2,1,length(greaternum));
newC=zeros(size(cc));
for i=1:length(gl)
newC(cc==lessnum(i))= cc(cc==lessnum(i)).*gl(i);
end
for i=1:length(gr)
newC(cc==greaternum(i))= cc(cc==greaternum(i)).*gr(i);
end
2 个评论
Stephen23
2019-5-22
编辑:Stephen23
2019-5-22
Have you used the profiler to actually check which part of your code is the bottleneck ?
If CC is very large then your code has a few "features" that might prevent it from running efficiently. For example:
It seems that the loops could be replaced with some logical/subscript indexing. As KSSV wrote, you should read about ismember.
回答(2 个)
KSSV
2019-5-22
编辑:KSSV
2019-5-22
Read about ismember, ismembertol and knnsearch.
9 个评论
Stephen23
2019-5-22
编辑:Stephen23
2019-5-22
" Locb gives number of matches of each number but it do not give indices for them. "
That is incorrect. ismember does not provide any histogram/counting functionality. Its second output are the indices of the values of A in array B. Since R2013a the default is to return the index of the first instance. In your example the first instance of the value 4 is a position 2, the first instance of value 2 is at position 1.
>> Locb(Lia)
ans =
2 1
>> B(Locb(Lia))
ans =
4 2
Image Analyst
2019-5-25
You say "Every entery of the loop has to comapre the full array cc."
You might want to take a look at pdist2(), if you have the stats toolbox.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!