Answers for "spatial.distance.euclidean(x y)"

3

distance euc of two arrays python

# Use numpy.linalg.norm:
import numpy as np

a = np.array([1.0, 3.5, -6.3])
b = np.array([4.5, 1.6,  1.2])

dist = np.linalg.norm(a-b)
Posted by: Guest on August-06-2020

Python Answers by Framework

Browse Popular Code Answers by Language