Package org.drip.numerical.decomposition
Class QR
java.lang.Object
org.drip.numerical.decomposition.QR
public class QR
extends java.lang.Object
QR holds the Results of QR Decomposition - viz., the Q and the R Matrices.
- Module = Computational Core Module
- Library = Numerical Analysis Library
- Project = Numerical Quadrature, Differentiation, Eigenization, Linear Algebra, and Utilities
- Package = Jordan Normal, UV, and QR Decompositions
- Author:
- Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description QR(double[][] aadblQ, double[][] aadblR)
QR Constructor -
Method Summary
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
QR
public QR(double[][] aadblQ, double[][] aadblR) throws java.lang.ExceptionQR Constructor- Parameters:
aadblQ
- QaadblR
- R- Throws:
java.lang.Exception
- Thrown if the Inputs are Invalid
-
-
Method Details
-
q
public double[][] q()Retrieve Q- Returns:
- Q
-
r
public double[][] r()Retrieve R- Returns:
- R
-