Interface SolveNullSpace<T extends Matrix>

All Known Implementing Classes:
SolveNullSpaceQR_DDRM, SolveNullSpaceQR_FDRM, SolveNullSpaceQRP_DDRM, SolveNullSpaceQRP_FDRM, SolveNullSpaceSvd_DDRM, SolveNullSpaceSvd_FDRM

public interface SolveNullSpace<T extends Matrix>
Finds the nullspace for a matrix given the number of singular values
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Returns true if the input matrix is modified
    boolean
    process(T input, int numberOfSingular, T nullspace)
    Finds the nullspace inside of input
  • Method Details

    • process

      boolean process(T input, int numberOfSingular, T nullspace)
      Finds the nullspace inside of input
      Parameters:
      input - (Input) input matrix. Maybe modified
      numberOfSingular - Number of singular values in the input
      nullspace - (Output) storage for null space
      Returns:
      true if successful or false if it failed
    • inputModified

      boolean inputModified()
      Returns true if the input matrix is modified