distance between numpy arrays

Solutions on MaxInterview for distance between numpy arrays by the best coders in the world

showing results for - "distance between numpy arrays"
Marlene
22 Feb 2016
1dist = numpy.linalg.norm(a-b, ord=2) #ord=2 is default and means Euclidean distance, but I'm showing here that you can specify it
2
similar questions
queries leading to this page
distance between numpy arrays