Package org.drip.numerical.linearalgebra
Class MatrixComplementTransform
java.lang.Object
org.drip.numerical.linearalgebra.MatrixComplementTransform
public class MatrixComplementTransform
extends java.lang.Object
MatrixComplementTransform holds the results of Matrix transforms on the source and the complement,
e.g., during a Matrix Inversion Operation.
- Module = Computational Core Module
- Library = Numerical Analysis Library
- Project = Numerical Quadrature, Differentiation, Eigenization, Linear Algebra, and Utilities
- Package = Linear Algebra Matrix Transform Library
- Author:
- Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description MatrixComplementTransform(double[][] aadblSource, double[][] aadblComplement)
MatrixComplementTransform constructor -
Method Summary
Modifier and Type Method Description double[][]
getComplement()
Retrieve the Transformed Complementdouble[][]
getSource()
Retrieve the Transformed Sourceint
size()
Retrieve the Dimension LengthMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
MatrixComplementTransform
public MatrixComplementTransform(double[][] aadblSource, double[][] aadblComplement) throws java.lang.ExceptionMatrixComplementTransform constructor- Parameters:
aadblSource
- Transformed Source MatrixaadblComplement
- Transformed Complement Matrix- Throws:
java.lang.Exception
- Thrown if the inputs are invalid
-
-
Method Details
-
getSource
public double[][] getSource()Retrieve the Transformed Source- Returns:
- The Transformed Source
-
getComplement
public double[][] getComplement()Retrieve the Transformed Complement- Returns:
- The Transformed Complement
-
size
public int size()Retrieve the Dimension Length- Returns:
- The Dimension Length
-