Package org.la4j.inversion
Class GaussJordanInverter
- java.lang.Object
-
- org.la4j.inversion.GaussJordanInverter
-
- All Implemented Interfaces:
java.io.Serializable
,MatrixInverter
public class GaussJordanInverter extends java.lang.Object implements MatrixInverter
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GaussJordanInverter(Matrix matrix)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Matrix
inverse()
Inverse matrix.Matrix
self()
Returns the self matrix of this inverter.
-
-
-
Field Detail
-
matrix
private final Matrix matrix
-
-
Constructor Detail
-
GaussJordanInverter
public GaussJordanInverter(Matrix matrix)
-
-
Method Detail
-
inverse
public Matrix inverse()
Description copied from interface:MatrixInverter
Inverse matrix.- Specified by:
inverse
in interfaceMatrixInverter
- Returns:
-
self
public Matrix self()
Description copied from interface:MatrixInverter
Returns the self matrix of this inverter.- Specified by:
self
in interfaceMatrixInverter
- Returns:
-
-