Interface DecompositionInterface<T extends Matrix>

    • Method Detail

      • decompose

        boolean decompose​(T orig)
        Computes the decomposition of the input matrix. Depending on the implementation the input matrix might be stored internally or modified. If it is modified then the function inputModified() will return true and the matrix should not be modified until the decomposition is no longer needed.
        Parameters:
        orig - The matrix which is being decomposed. Modification is implementation dependent.
        Returns:
        Returns if it was able to decompose the matrix.
      • inputModified

        boolean inputModified()
        Is the input matrix to decompose(org.ejml.data.Matrix) is modified during the decomposition process.
        Returns:
        true if the input matrix to decompose() is modified.