Comparing version 5.1.1 to 5.2.0
@@ -0,1 +1,16 @@ | ||
<a name="5.2.0"></a> | ||
# [5.2.0](https://github.com/mljs/matrix/compare/v5.1.1...v5.2.0) (2018-09-25) | ||
### Bug Fixes | ||
* complete type definitions ([ca63059](https://github.com/mljs/matrix/commit/ca63059)) | ||
### Features | ||
* create index.d.ts ([#74](https://github.com/mljs/matrix/issues/74)) ([905c987](https://github.com/mljs/matrix/commit/905c987)) | ||
<a name="5.1.1"></a> | ||
@@ -2,0 +17,0 @@ ## [5.1.1](https://github.com/mljs/matrix/compare/v5.1.0...v5.1.1) (2018-05-11) |
{ | ||
"name": "ml-matrix", | ||
"version": "5.1.1", | ||
"version": "5.2.0", | ||
"description": "Matrix manipulation and computation library", | ||
"main": "matrix.js", | ||
"module": "src/index.js", | ||
"types": "matrix.d.ts", | ||
"files": [ | ||
"matrix.d.ts", | ||
"matrix.js", | ||
@@ -20,2 +22,5 @@ "src" | ||
}, | ||
"jest": { | ||
"testEnvironment": "node" | ||
}, | ||
"repository": { | ||
@@ -49,21 +54,21 @@ "type": "git", | ||
"devDependencies": { | ||
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0", | ||
"benchmark": "^2.1.0", | ||
"csv-parse": "^2.2.0", | ||
"eslint": "^4.5.0", | ||
"eslint-config-cheminfo": "^1.5.2", | ||
"eslint-plugin-import": "^2.11.0", | ||
"eslint-plugin-jest": "^21.15.1", | ||
"jest": "^22.4.3", | ||
"jest-matcher-deep-close-to": "^1.0.2", | ||
"mathjs": "^4.2.1", | ||
"npm-run-all": "^4.0.1", | ||
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", | ||
"benchmark": "^2.1.4", | ||
"csv-parse": "^3.0.0", | ||
"eslint": "^5.6.0", | ||
"eslint-config-cheminfo": "^1.18.0", | ||
"eslint-plugin-import": "^2.14.0", | ||
"eslint-plugin-jest": "^21.22.1", | ||
"jest": "^23.6.0", | ||
"jest-matcher-deep-close-to": "^1.3.0", | ||
"mathjs": "^5.1.2", | ||
"npm-run-all": "^4.1.3", | ||
"numeric": "^1.2.6", | ||
"pretty-hrtime": "^1.0.0", | ||
"rollup": "^0.58.2" | ||
"pretty-hrtime": "^1.0.3", | ||
"rollup": "^0.66.2" | ||
}, | ||
"dependencies": { | ||
"ml-array-max": "^1.0.1", | ||
"ml-array-rescale": "^1.1.0" | ||
"ml-array-max": "^1.0.2", | ||
"ml-array-rescale": "^1.1.1" | ||
} | ||
} |
@@ -180,2 +180,10 @@ # ml-matrix | ||
// Eigenvalues & eigenvectors | ||
var A = new Matrix([[2, 3, 5], [4, 1, 6], [1, 3, 0]]); | ||
var e = EigenvalueDecomposition(A); | ||
var real = e.realEigenvalues; | ||
var imaginary = e.imaginaryEigenvalues; | ||
var vectors = e.eigenvectorMatrix; | ||
//======= | ||
@@ -182,0 +190,0 @@ // Others |
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
269583
31
8397
215
Updatedml-array-max@^1.0.2
Updatedml-array-rescale@^1.1.1