From ae967a3f831f25bc9f8d244e0b592963aea31733 Mon Sep 17 00:00:00 2001 From: Mark Rogoyski Date: Sat, 2 Mar 2024 15:49:13 -0800 Subject: [PATCH] Add Chebyshev distance to README. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 71a125b8e..3fa7f9b42 100644 --- a/README.md +++ b/README.md @@ -2266,6 +2266,7 @@ $d⟮X、Y⟯ = Distance::canberra($X, Y); brayCurtis = Distance::brayCurtis($X, $Y); $cosine = Distance::cosine($X, $Y); $cos⟮α⟯ = Distance::cosineSimilarity($X, $Y); +$D⟮X、Y⟯ = Distance::chebyshev($X, $Y); // Mahalanobis distance $x = new Matrix([[6], [5]]);