欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python:计算两个向量的欧式距离

程序员文章站 2022-03-31 23:25:33
...
import numpy as np

a = np.array([1,2,3,6])
b = np.array([3,2,1,5])

def dist(a, b):
    return np.sqrt(sum((a - b) ** 2))

print(dist(a,b))

print(np.linalg.norm(a-b,ord=2))