|
|
Re: Euclidean distance of all pairwise combinations (redundants)
Posted:
Feb 1, 2013 1:16 AM
|
|
On Jan 31, 5:46 pm, vasiliadesmixa...@gmail.com wrote: > Hi, > > I am wondering on how to get the euclidean distance between all the point from two different list . > > For example : list1=[{1,1,1},{1,3,1},{3,2,4}] , list2=[{1,2,1},{1,2,3}] etc. > > how to find the euclidean comparing all the pairs ?? {1,1,1} with {1,2,1} and then {1,1,1} with {1,2,3} etc...
Partition[Norm/@Plus@@Transpose@Tuples@{list1,-list2},Length@list2]
{{1, Sqrt[5]}, {1, Sqrt[5]}, {Sqrt[13], Sqrt[5]}}
|
|