An open API service indexing awesome lists of open source software.

https://github.com/abhijit-hota/nyo

A matrix library for JavaScript with ability to calculate determinants, inverse, RREF and perform other simple matrix operations.
https://github.com/abhijit-hota/nyo

determinant inverse javascript matrix nodejs rref

Last synced: 3 months ago
JSON representation

A matrix library for JavaScript with ability to calculate determinants, inverse, RREF and perform other simple matrix operations.

Awesome Lists containing this project

README

          

# Nyo

## A Matrix Library for JavaScript

Currently, only supports CommonJS syntax.

### Install

`npm i nyo`

or

`yarn add nyo`

### Features

- Addition
- Multiplication
- Determinant
- Inverse
- Transpose
- RREF

### Todos

- Code
- [ ] Stable API
- [ ] Fix error handling at some places
- [ ] Features: `print`, `concat`, `slice`, `replace`, etc.
- [ ] Make a separate `SquareMatrix` class inherited from `Matrix` class
- [ ] Tests
- Misc
- [ ] Add Docs (!)
- [ ] Bundle it for browsers
- [ ] Set-up CI