diff --git a/src/function/statistics/corr.js b/src/function/statistics/corr.js index 10bdd14c72..a01a6bdfb9 100644 --- a/src/function/statistics/corr.js +++ b/src/function/statistics/corr.js @@ -17,8 +17,6 @@ export const createCorr = /* #__PURE__ */ factory(name, dependencies, ({ typed, * math.corr([1, 2, 3, 4, 5], [4, 5, 6, 7, 8]) // returns 1 * math.corr([1, 2.2, 3, 4.8, 5], [4, 5.3, 6.6, 7, 8]) //returns 0.9569941688503644 * math.corr([[1, 2.2, 3, 4.8, 5], [4, 5.3, 6.6, 7, 8]],[[1, 2.2, 3, 4.8, 5], [4, 5.3, 6.6, 7, 8]]) // returns [1,1] - * math.corr(math.matrix([2, 4, 6, 8]), math.matrix([1, 2, 3, 6])) // returns 0.9561828874675149 - * math.corr(math.matrix([[1, 2.2, 3, 4.8, 5], [1, 2, 3, 4, 5]]), math.matrix([[4, 5.3, 6.6, 7, 8], [1, 2, 3, 4, 5]])) // returns [0.9569941688503644, 1] * * See also: *