Package Exports
- ml-matrix
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ml-matrix) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ml-matrix
Matrix manipulation and computation library.
Installation
$ npm install --save ml-matrix
Usage
As an ES module
import Matrix from 'ml-matrix';
const matrix = Matrix.ones(5, 5);As a CommonJS module
const {Matrix} = require('ml-matrix');
const matrix = Matrix.ones(5, 5);