



Vector distance metric calculating the sum of absolute differences between vector components. Measures grid-like distance and is robust to outliers, with faster calculation as data dimensionality increases.
Manhattan distance (L1 norm) calculates the distance between vectors by summing the absolute differences of their components. Also known as taxicab or city block distance.
Distance = Σ|a[i] - b[i]|
Less intuitive than Euclidean distance for geometric problems. May not reflect actual similarity for normalized or angular comparisons.
Supported by some vector databases, though less common than cosine and Euclidean. Check specific database documentation.
Loading more......