Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More

ml-matrix

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ml-matrix - npm Package Compare versions

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