Comparing version 6.8.1 to 6.8.2
{ | ||
"name": "ml-matrix", | ||
"version": "6.8.1", | ||
"version": "6.8.2", | ||
"description": "Matrix manipulation and computation library", | ||
@@ -5,0 +5,0 @@ "main": "matrix.js", |
@@ -79,3 +79,3 @@ # ml-matrix | ||
var A = new Matrix([[1, 1], [-1, -1]]); | ||
var expon = Matrix.exp(A); // expon = Matrix [[Math.exp(1), Math.exp(1)], [Math.exp(-1), Math.exp(-1)], rows: 2, columns: 2]. | ||
var exponential = Matrix.exp(A); // exponential = Matrix [[Math.exp(1), Math.exp(1)], [Math.exp(-1), Math.exp(-1)], rows: 2, columns: 2]. | ||
var cosinus = Matrix.cos(A); // cosinus = Matrix [[Math.cos(1), Math.cos(1)], [Math.cos(-1), Math.cos(-1)], rows: 2, columns: 2]. | ||
@@ -82,0 +82,0 @@ var absolute = Matrix.abs(A); // expon = absolute [[1, 1], [1, 1], rows: 2, columns: 2]. |
@@ -1030,2 +1030,3 @@ import rescale from 'ml-array-rescale'; | ||
} | ||
return blockMult(x, y, r, c); | ||
@@ -1032,0 +1033,0 @@ } |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
370632