General purpose robust determinant computation
npm install robust-determinantrobust-determinant
==================
Computes the determinant of an nxn matrix as a non-overlapping increasing sequence.
``javascript
var robustDeterminant = require("robust-determinant")
console.log(robustDeterminant([[1,2,3], [4,5,6], [7,8,9]])
`
Output:
`javascript`
[ 0 ]
``
npm install robust-determinant
*
m is a square matrixReturns The determinant of
m as a non-increasing overlapping sequenceNote 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,`javascript
robustDeterminant2 === robustDeterminant([[1,2],[3,4]])
``