Package org.drip.numerical.linearalgebra
Class LinearizationOutput
java.lang.Object
org.drip.numerical.linearalgebra.LinearizationOutput
public class LinearizationOutput
extends java.lang.Object
LinearizationOutput holds the output of a sequence of linearization operations. It contains the
transformed original matrix, the transformed RHS, and the method used for the linearization 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 LinearizationOutput(double[] adblTransformedRHS, double[][] aadblTransformedMatrix, java.lang.String strLinearizationMethod)
LinearizationOutput constructor -
Method Summary
Modifier and Type Method Description java.lang.String
getLinearizationMethod()
The Linearization Methoddouble[][]
getTransformedMatrix()
The Transformed Matrixdouble[]
getTransformedRHS()
The RHSMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
LinearizationOutput
public LinearizationOutput(double[] adblTransformedRHS, double[][] aadblTransformedMatrix, java.lang.String strLinearizationMethod) throws java.lang.ExceptionLinearizationOutput constructor- Parameters:
adblTransformedRHS
- The Transformed RHSaadblTransformedMatrix
- The Transformed MatrixstrLinearizationMethod
- Method used for the Linearization- Throws:
java.lang.Exception
- Thrown if the inputs are invalid
-
-
Method Details
-
getTransformedRHS
public double[] getTransformedRHS()The RHS- Returns:
- The RHS
-
getTransformedMatrix
public double[][] getTransformedMatrix()The Transformed Matrix- Returns:
- The Transformed Matrix
-
getLinearizationMethod
public java.lang.String getLinearizationMethod()The Linearization Method- Returns:
- The Linearization Method
-