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.
- Host: GitHub
- URL: https://github.com/abhijit-hota/nyo
- Owner: abhijit-hota
- Created: 2021-02-04T15:51:52.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-02-04T17:59:26.000Z (over 5 years ago)
- Last Synced: 2025-10-06T20:49:20.554Z (8 months ago)
- Topics: determinant, inverse, javascript, matrix, nodejs, rref
- Language: JavaScript
- Homepage:
- Size: 60.5 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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