A general-purpose matrix library for NodeJS capable of LU-decomposition and solving equations of the form Ax=b.
Quick Intro
There are two main APIs in Matrixy:
- arrays - works with 2D arrays
- matrixy - works with Matrices (wrapped 2D arrays)
require 'matrixy' # Arrays API Arraysfours = 44fives = 55 result = add foursfives # Matrixy API Matrixyfours = createMatrix 44fives = createMatrix 55 result = fours plus fives
Background blog post on the ideas behind the design of the matrixy API.