Comparing version 1.0.2 to 1.0.3
@@ -0,1 +1,6 @@ | ||
1.0.3 / 2015-11-19 | ||
================== | ||
* random not correctly filling rectangular matrices | ||
1.0.2 / 2015-10-05 | ||
@@ -2,0 +7,0 @@ ================== |
{ | ||
"name": "ml-matrix", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "Matrix manipulation and computation library", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -134,3 +134,3 @@ 'use strict'; | ||
for (var i = 0; i < rows; i++) { | ||
for (var j = 0; j < rows; j++) { | ||
for (var j = 0; j < columns; j++) { | ||
matrix[i][j] = rng(); | ||
@@ -137,0 +137,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
3034679