|
|
Re: Euclidean distance of all pairwise combinations (redundants)
Posted:
Feb 1, 2013 1:15 AM
|
|
One way would be with Outer. Simply take care of plugging in the level at which you want the operation performed.lista1={{1,1,1},{1,3,1},{3,2,4}} lista2={{1,2,1},{1,2,3}}
Outer[EuclideanDistance,lista1,lista2,1]
Note the 1 at the end, for level 1.
Ouput: {{1,Sqrt[5]},{1,Sqrt[5]},{Sqrt[13],Sqrt[5]}} Francisco
________________________________
From: "vasiliadesmixalis@gmail.com" <vasiliadesmixalis@gmail.com> Sent: Thursday, January 31, 2013 8:47 PM Subject: Re: Euclidean distance of all pairwise combinations (redundants)
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...
|
|