Easy to use typescript math library
import { Matrix } from "math-stat";
let matrix = new Matrix([[1, 2, 3], [4, 5, 6], [7, 8, 9]]);
let matrix2 = new Matrix([[2, 4], [5, 7]]);
console.log(matrix.multiply(matrix2).toString());
npm install math-stat
-
Completed
- Matrices
- Vectors
- Fractions
-
Work in progess
-
Incoming
- Statistic
- How to make VSCode Intellisense suggest typed-math typings?
- Check if in your tsconfig you have "typeRoots": ["./node_modules"] and "moduleResolution": "node"
Create an issue in this repo mentionning the version of the package.