Answers for "euclidean distance between two arrays python"

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

Code answers related to "euclidean distance between two arrays python"

Python Answers by Framework

Browse Popular Code Answers by Language