Comparing version 1.1.1 to 1.1.2
@@ -0,1 +1,6 @@ | ||
1.1.2 / 2016-05-18 | ||
================== | ||
* fix EVD bug introduced in last version | ||
1.1.1 / 2016-05-18 | ||
@@ -2,0 +7,0 @@ ================== |
{ | ||
"name": "ml-matrix", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "Matrix manipulation and computation library", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -28,3 +28,3 @@ 'use strict'; | ||
for (j = 0; j < n; j++) { | ||
V[i][j] = value.get([i][j]); | ||
V[i][j] = value.get(i, j); | ||
} | ||
@@ -40,3 +40,3 @@ } | ||
for (i = 0; i < n; i++) { | ||
H[i][j] = value.get([i][j]); | ||
H[i][j] = value.get(i, j); | ||
} | ||
@@ -43,0 +43,0 @@ } |
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
93325