Inverts a matrix in gl-matrix format of any dimension
npm install gl-matrix-invertgl-matrix-invert
================
Dimension independent matrix inverse
``javascript
var invert = require('gl-matrix-invert')
console.log(invert(new Array(9), [1, 0, 0,
0, 1, 0,
-1, 10, 1]))
`
* src is the input matrixdest` is an array which receives the result of the matrix inverse
*
Returns dst
Notes Currently only works with matrices up to 4x4