Skip to content

A basic matrix math library.

License

Notifications You must be signed in to change notification settings

ruanswanepoel/JS-Matrix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JS-Matrix

A basic matrix math library.

Installation

npm install @rewforen/js-matrix

Usage

const { Matrix } = require('js-matrix');

let mat = new Matrix(2, 3, [1, 2, 3, 4, 5, 6]);

Contributing

  1. Clone the repository
git clone https://github.com/RewForeN/JS-Matrix.git
  1. Perform a clean install
npm ci