1. 程式人生 > >Python計算一個點到所有點的歐式距離

Python計算一個點到所有點的歐式距離

distances = np.sqrt(np.sum(np.asarray(airportPosition - x_vals)**2, axis=1))

airportPosition是矩陣中的某一個點

x_vals是矩陣中所有的點

distances是某一個點到所有點的距離矩陣