public class MatrixOp extends Object
Modifier and Type | Class and Description |
---|---|
static class |
MatrixOp.IndeterminateMatrixException |
static class |
MatrixOp.InvalidMatrixException |
Modifier and Type | Method and Description |
---|---|
static double |
det(Matrix mIn) |
static void |
inverse(Matrix mIn,
MutableMatrix mOut)
Invert matrix mIn and write it to matrix mOut.
|
static Matrix |
mult(Matrix m1,
Matrix m2) |
static String |
toString(Matrix m) |
static void |
transposed(Matrix mIn,
MutableMatrix mOut)
Traspose matrix mIn and write it to matrix mOut.
|
public static void inverse(Matrix mIn, MutableMatrix mOut) throws MatrixOp.InvalidMatrixException
inverse(this,this);
This method currently only supports square matrices.MatrixOp.InvalidMatrixException
public static double det(Matrix mIn)
public static void transposed(Matrix mIn, MutableMatrix mOut)
transposed(this,this);
This method currently only supports square matrices.Jas4pp 1.5 © Java Analysis Studio for Particle Physics