Interface TridiagonalSimilarDecomposition<MatrixType extends Matrix>

    • Method Detail

      • getT

        MatrixType getT​(MatrixType T)
        Extracts the tridiagonal matrix found in the decomposition.
        Parameters:
        T - If not null then the results will be stored here. Otherwise a new matrix will be created.
        Returns:
        The extracted T matrix.
      • getQ

        MatrixType getQ​(MatrixType Q,
                        boolean transposed)
        An orthogonal matrix that has the following property: T = QHAQ
        Parameters:
        Q - If not null then the results will be stored here. Otherwise a new matrix will be created.
        transposed - If true then the transpose (real) or conjugate transpose (complex) of Q is returned.
        Returns:
        The extracted Q matrix.