📜  两点之间的 numpy 距离 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:59.686000             🧑  作者: Mango

代码示例4
dist = 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