A basic matrix math library.
npm install @rewforen/js-matrix
const { Matrix } = require('js-matrix');
let mat = new Matrix(2, 3, [1, 2, 3, 4, 5, 6]);
- Clone the repository
git clone https://github.com/RewForeN/JS-Matrix.git
- Perform a clean install
npm ci