-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Matrixd
abs()
Matrixd
ceil()
Vectord
column(int col)
double
determinant()
Matrixd
div(double a)
Matrixd
floor()
double
get(int row, int col)
Matrixd
invert()
Matrixd
mul(double a)
Matrixd
negate()
Matrixd
pow(double pow)
Matrixd
round()
Vectord
row(int row)
double[]
toArray(boolean columnMajor)
Matrixd
toDouble()
Matrixf
toFloat()
double
trace()
Matrixd
transpose()
-
-
-
Method Detail
-
get
double get(int row, int col)
-
row
Vectord row(int row)
-
column
Vectord column(int col)
-
mul
Matrixd mul(double a)
-
div
Matrixd div(double a)
-
pow
Matrixd pow(double 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()
-
-