robust-determinant
Computes the determinant of an nxn matrix as a non-overlapping increasing sequence.
Example
var robustDeterminant = console
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,
robustDeterminant21234 ===
Credits
(c) 2013 Mikola Lysenko. MIT License