Answers for "euclidean distance 3 dimensions python"

1

euclidean distance python 3 variables

# Python code to find Euclidean distance 
# using sum() and square() 
  
import numpy as np 
  
# intializing points in 
# numpy arrays 
point1 = np.array((1, 2, 3)) 
point2 = np.array((1, 1, 1)) 
  
# finding sum of squares 
sum_sq = np.sum(np.square(point1 - point2)) 
  
# Doing squareroot and 
# printing Euclidean distance 
print(np.sqrt(sum_sq))
Posted by: Guest on January-20-2021

Code answers related to "euclidean distance 3 dimensions python"

Python Answers by Framework

Browse Popular Code Answers by Language