Class SolveNullSpaceQRP_FDRM

java.lang.Object
org.ejml.dense.row.linsol.qr.SolveNullSpaceQRP_FDRM
All Implemented Interfaces:
SolveNullSpace<FMatrixRMaj>

@Generated("org.ejml.dense.row.linsol.qr.SolveNullSpaceQRP_DDRM") public class SolveNullSpaceQRP_FDRM extends Object implements SolveNullSpace<FMatrixRMaj>

Uses QR decomposition to find the null-space for a matrix of any shape if the number of singular values is known.=

Solves for AT=QR and the last column in Q is the null space.
  • Constructor Details

    • SolveNullSpaceQRP_FDRM

      public SolveNullSpaceQRP_FDRM()
  • Method Details

    • process

      public boolean process(FMatrixRMaj A, int numSingularValues, FMatrixRMaj nullspace)
      Finds the null space of A
      Specified by:
      process in interface SolveNullSpace<FMatrixRMaj>
      Parameters:
      A - (Input) Matrix. Modified
      numSingularValues - Number of singular values
      nullspace - Storage for null-space
      Returns:
      true if successful or false if it failed
    • inputModified

      public boolean inputModified()
      Description copied from interface: SolveNullSpace
      Returns true if the input matrix is modified
      Specified by:
      inputModified in interface SolveNullSpace<FMatrixRMaj>
    • getQ

      public FMatrixRMaj getQ()