Skip to content

kolodny/mmath

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mmath

Build Status

a tiny linear algebra library

usage

var mmath = require('mmath');

var matrix = new mmath.Matrix([
  [1,2,3],
  [4,5,6],
  [7,8,9]
]);

API:

Matrix#add(sameDimsMatrix)

Matrix#determinant()

Matrix#get(i, j)

Matrix#multiply(otherMatrix)

Matrix#scalar(number)

Matrix#tranpose()

Matrix#inverse()

Matrix#adjugate()

Matrix#cofactor(i, j)

About

messing around with some linear algebra

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published