robust-determinant
General purpose robust determinant computation
Last updated 11 years ago by mikolalysenko .
MIT · Repository · Bugs · Original npm
$ cnpm install robust-determinant 
SYNC missed versions from official npm registry.

robust-determinant

Computes the determinant of an nxn matrix as a non-overlapping increasing sequence.

Example

var robustDeterminant = require("robust-determinant")

console.log(robustDeterminant([[1,2,3], [4,5,6], [7,8,9]])

Output:

[ 0 ]

Install

npm install robust-determinant

require("robust-determinant")(m)

Exactly computes the determinant of a floating point matrix m

  • m is a square matrix

Returns The determinant of m as a non-increasing overlapping sequence

Note For matrices with up to 5 rows, you can avoid an extra dispatch by calling robustDeterminant[n], where n is the number of rows. For example,

robustDeterminant[2]([[1,2],[3,4]]) === robustDeterminant([[1,2],[3,4]])

Credits

(c) 2013 Mikola Lysenko. MIT License

Current Tags

  • 1.1.0                                ...           latest (11 years ago)

1 Versions

  • 1.1.0                                ...           11 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (4)
Dev Dependencies (1)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org