Package org.ejml.dense.row.linsol.qr
Class SolveNullSpaceQR_FDRM
java.lang.Object
org.ejml.dense.row.linsol.qr.SolveNullSpaceQR_FDRM
- All Implemented Interfaces:
org.ejml.interfaces.SolveNullSpace<org.ejml.data.FMatrixRMaj>
@Generated("org.ejml.dense.row.linsol.qr.SolveNullSpaceQR_DDRM")
public class SolveNullSpaceQR_FDRM
extends Object
implements org.ejml.interfaces.SolveNullSpace<org.ejml.data.FMatrixRMaj>
Uses QR decomposition to find the null-space for a matrix of any shape if the number of singular values is known. WARNING: This only uses the first several rows in the input matrix. The rest are ignored.
Solves for AT=QR and the last column in Q is the null space.-
Constructor Details
-
SolveNullSpaceQR_FDRM
public SolveNullSpaceQR_FDRM()
-
-
Method Details
-
process
public boolean process(org.ejml.data.FMatrixRMaj A, int numSingularValues, org.ejml.data.FMatrixRMaj nullspace) Finds the null space of A- Specified by:
processin interfaceorg.ejml.interfaces.SolveNullSpace<org.ejml.data.FMatrixRMaj>- Parameters:
A- (Input) Matrix. ModifiednumSingularValues- Number of singular valuesnullspace- Storage for null-space- Returns:
- true if successful or false if it failed
-
inputModified
public boolean inputModified()- Specified by:
inputModifiedin interfaceorg.ejml.interfaces.SolveNullSpace<org.ejml.data.FMatrixRMaj>
-
getQ
public org.ejml.data.FMatrixRMaj getQ()
-