public interface Matrixd
-
Method Details
-
get
double get(int row, int col) -
row
-
column
-
mul
-
div
-
pow
-
ceil
Matrixd ceil() -
floor
Matrixd floor() -
round
Matrixd round() -
abs
Matrixd abs() -
negate
Matrixd negate() -
transpose
Matrixd transpose() -
trace
double trace() -
determinant
double determinant() -
invert
Matrixd invert() -
toArray
double[] toArray(boolean columnMajor) -
toFloat
Matrixf toFloat() -
toDouble
Matrixd toDouble()
-