I am new to Numpy and I would like to ask you how to calculate euclidean distance between points stored in a vector.
Let\'s assume that we have a numpy.array each ro
To get the distance you can use the norm method of the linalg module in numpy:
np.linalg.norm(x - y)