This is documentation for an old release of SciPy (version 0.17.0). Read this page in the documentation of the latest stable release (version 1.15.1).
scipy.spatial.distance.sqeuclidean¶
- scipy.spatial.distance.sqeuclidean(u, v)[source]¶
Computes the squared Euclidean distance between two 1-D arrays.
The squared Euclidean distance between u and v is defined as
||u−v||22.Parameters: u : (N,) array_like
Input array.
v : (N,) array_like
Input array.
Returns: sqeuclidean : double
The squared Euclidean distance between vectors u and v.