Interface QRPDecomposition<T extends Matrix>

    • Method Detail

      • getRank

        int getRank()
        Returns the rank as determined by the algorithm. This is dependent upon a fixed threshold and might not be appropriate for some applications.
        Returns:
        Matrix's rank
      • getColPivots

        int[] getColPivots()
        Ordering of each column after pivoting. The current column i was original at column pivot[i].
        Returns:
        Order of columns.
      • getColPivotMatrix

        T getColPivotMatrix​(T P)
        Creates the column pivot matrix.
        Parameters:
        P - Optional storage for pivot matrix. If null a new matrix will be created.
        Returns:
        The pivot matrix.