math-stat

Easy to use typescript math library


Keywords
math, mathematic, matrix, vector, fraction, stat, typescript, typed, type
License
ISC
Install
npm install math-stat@1.0.2

Documentation

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.