Package org.ejml.interfaces
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 TypeMethodDescriptionboolean
Returns true if the input matrix is modifiedboolean
Finds the nullspace inside of input
-
Method Details
-
process
Finds the nullspace inside of input- Parameters:
input
- (Input) input matrix. Maybe modifiednumberOfSingular
- Number of singular values in the inputnullspace
- (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
-