Uses of Class
io.odilon.rs.Matrix
-
Packages that use Matrix Package Description io.odilon.rs -
-
Uses of Matrix in io.odilon.rs
Methods in io.odilon.rs that return Matrix Modifier and Type Method Description Matrix
Matrix. augment(Matrix right)
Returns the concatenation of this matrix and the matrix on the right.static Matrix
Matrix. identity(int size)
Returns an identity matrix of the given size.Matrix
Matrix. invert()
Returns the inverse of this matrix.Matrix
Matrix. submatrix(int rmin, int cmin, int rmax, int cmax)
Returns a part of this matrix.Matrix
Matrix. times(Matrix right)
Multiplies this matrix (the one on the left) by another matrix (the one on the right).Methods in io.odilon.rs with parameters of type Matrix Modifier and Type Method Description Matrix
Matrix. augment(Matrix right)
Returns the concatenation of this matrix and the matrix on the right.Matrix
Matrix. times(Matrix right)
Multiplies this matrix (the one on the left) by another matrix (the one on the right).
-