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.
|
4 years ago | |
---|---|---|
.. | ||
example | 4 years ago | |
.npmignore | 4 years ago | |
LICENSE | 4 years ago | |
README.md | 4 years ago | |
index.glsl | 4 years ago | |
package.json | 4 years ago |
README.md
glsl-inverse
Invert a matrix in GLSL.
Example
#pragma glslify: inverse = require(glsl-inverse)
void main() {
mat3 m = mat3(1, 2, -3,
4, 0, 6,
7.1, 8, 9);
mat3 mi = inverse(m);
//now mi is the inverse of m
}
Usage
Install with npm:
npm install glsl-inverse
Then use with glslify.
API
#pragma glslify: inverse = require(glsl-inverse)
mi = inverse(float|mat2|mat3|mat4 m)
Computes inverse of m
m
is a matrix to invert, eitherfloat, mat2, mat3
ormat4
Returns The inverse of m
License
(c) 2014 Mikola Lysenko. MIT License