This is documentation for an old release of SciPy (version 0.19.1). Read this page in the documentation of the latest stable release (version 1.15.1).
scipy.spatial.distance.cityblock¶
-
scipy.spatial.distance.
cityblock
(u, v)[source]¶ Computes the City Block (Manhattan) distance.
Computes the Manhattan distance between two 1-D arrays u and v, which is defined as
∑i|ui−vi|.Parameters: u : (N,) array_like
Input array.
v : (N,) array_like
Input array.
Returns: cityblock : double
The City Block (Manhattan) distance between vectors u and v.