Skip to content

turtledev1/math-stat

Repository files navigation

math-stat

Easy to use typescript math library

coverage Github Issues Pending Pull-Requests

Table of Contents


Example

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());

Installation

npm install math-stat

Features

  • Completed

    • Matrices
    • Vectors
    • Fractions
  • Work in progess

  • Incoming

    • Statistic

FAQ

  • How to make VSCode Intellisense suggest typed-math typings?
    • Check if in your tsconfig you have "typeRoots": ["./node_modules"] and "moduleResolution": "node"

Support

Create an issue in this repo mentionning the version of the package.


About

npm math library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published