In Matlab there exists the pdist2
command. Given the matrix mx2
and the matrix nx2
, each row of matrices represents a 2d
point. Now I want to create a mxn
matrix such that (i,j)
element represents the distance from i
th point of mx2
matrix to j
th point of nx2
matrix. I simply call the command pdist2(M,N)
.
I am looking for an alternative to this in python. I can of course write 2 for loops but since I am working with 2 numpy arrays, using for loops is not always the best choice. Is there an optimized command for this in the python universe? Basically I am asking for python alternative to MATLAB's pdist2
.