1.1.1 • Published 10 years ago

matrixy v1.1.1

Weekly downloads
4
License
MIT
Repository
github
Last release
10 years ago

Build Status npm Dependency Status devDependency Status

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)
{Matrixy, Arrays} = require 'matrixy'

# Arrays API
{add} = Arrays
fours = [[4, 4]]
fives = [[5, 5]]

result = add fours, fives

# Matrixy API
{createMatrix, plus} = Matrixy
fours = createMatrix [[4, 4]]
fives = createMatrix [[5, 5]]

result = fours plus fives

API Docs are in the wiki.

Background blog post on the ideas behind the design of the matrixy API.

1.1.1

10 years ago

1.1.0

10 years ago

1.0.4

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

11 years ago

0.0.1

11 years ago