org.ujmp.core.doublematrix.calculation.general.decomposition
Interface QR<T>
-
public interface QR<T>QR Decomposition.For an m-by-n matrix A with m >= n, the QR decomposition is an m-by-n orthogonal matrix Q and an n-by-n upper triangular matrix R so that A = Q*R.
The QR decompostion always exists, even if the matrix does not have full rank, so the constructor will never fail. The primary use of the QR decomposition is in the least squares solution of nonsquare systems of simultaneous linear equations. This will fail if isFullRank() returns false.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface and Description static classQR.QRMatrix
-
Field Summary
Fields Modifier and Type Field and Description static QR<Matrix>INSTANCEstatic QR<Matrix>MATRIXstatic QR<Matrix>MATRIXLARGEMULTITHREADEDstatic QR<Matrix>MATRIXLARGESINGLETHREADEDstatic QR<Matrix>MATRIXSMALLMULTITHREADEDstatic QR<Matrix>MATRIXSMALLSINGLETHREADEDstatic intTHRESHOLDstatic QR<Matrix>UJMP
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description T[]calc(T source)Tsolve(T source, T b)
-
-
-
Field Detail
-
THRESHOLD
static final int THRESHOLD
- See Also:
- Constant Field Values
-
-
DataMelt 3.0 © DataMelt by jWork.ORG