Compute L1 distance between matrices in fast way
Show older comments
Hi,
I have to compute the L1 distance (Manhattan distance) between matrices. Is there a fast way that avoid to use for loop? I have found this code for euclidean distance
if true
aa=sum(a.*a,2); bb=sum(b.*b,2); ab=a*b';
d = sqrt(abs(repmat(aa,[1 size(bb,1)]) + repmat(bb',[size(aa,1) 1]) - 2*ab));
end
Thank you
3 Comments
Walter Roberson
on 20 Dec 2012
Jan, put your cursor on the text entry box without anything selected, and press the {} Code button...
Jan
on 21 Dec 2012
@Walter: Thank you very much. This is revelation.
Accepted Answer
More Answers (0)
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!