Class QrHouseHolderSolver_MT_FDRB

java.lang.Object
org.ejml.dense.block.linsol.qr.QrHouseHolderSolver_MT_FDRB
All Implemented Interfaces:
LinearSolver<FMatrixRBlock,FMatrixRBlock>, LinearSolverDense<FMatrixRBlock>

@Generated("org.ejml.dense.block.linsol.qr.QrHouseHolderSolver_FDRB") public class QrHouseHolderSolver_MT_FDRB extends Object implements LinearSolverDense<FMatrixRBlock>

A solver for QRDecompositionHouseholder_MT_FDRB. Systems are solved for using the standard QR decomposition method, sketched below.

A = Q*R
A*x = b
Q*R*x = b
R*x = y = QTb
x = R-1y

Where A is the m by n matrix being decomposed. Q is an orthogonal matrix. R is upper triangular matrix.