StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/gl-matrix-invert
Angelos Chatzimparmpas e069030893 fix the frontend 3 years ago
..
test fix the frontend 3 years ago
.npmignore fix the frontend 3 years ago
LICENSE fix the frontend 3 years ago
README.md fix the frontend 3 years ago
invert.js fix the frontend 3 years ago
package.json fix the frontend 3 years ago

README.md

gl-matrix-invert

Dimension independent matrix inverse

Example

var invert = require('gl-matrix-invert')


console.log(invert(new Array(9), [1, 0, 0,
                                  0, 1, 0,
                                  -1, 10, 1]))

API

require('gl-matrix-invert')(dest, src)

Computes the inverse of an array matrix in column-major order (as is the convention in WebGL/gl-matrix).

  • src is the input matrix
  • dest is an array which receives the result of the matrix inverse

Returns dst

Notes Currently only works with matrices up to 4x4

Credits

(c) 2014 Mikola Lysenko. MIT License