Package org.ejml.interfaces
Interface SolveNullSpace<T extends Matrix>
-
public interface SolveNullSpace<T extends Matrix>Finds the nullspace for a matrix given the number of singular values
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleaninputModified()Returns true if the input matrix is modifiedbooleanprocess(T input, int numberOfSingular, T nullspace)Finds the nullspace inside of input
-
-
-
Method Detail
-
process
boolean process(T input, int numberOfSingular, T nullspace)
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
-
-