SciPy - Clustering and Distance
You have two sets of points:
You want to find which point in
pointsA = [[0, 0], [3, 4], [6, 8]] pointsB = [[0, 0], [0, 5]]
You want to find which point in
pointsA is closest to any point in pointsB. Which approach using scipy.spatial.distance_matrix is correct?