Home | History | Annotate | Download | only in MatrixFunctions

Lines Matching refs:Upper

16   * \brief Class for computing matrix square roots of upper quasi-triangular matrices.
20 * This class computes the square root of the upper quasi-triangular
21 * matrix stored in the upper Hessenberg part of the matrix passed to
33 * \param[in] A upper quasi-triangular matrix whose square root
49 * Only the upper Hessenberg part of \p result is updated, the
96 // pre: T is quasi-upper-triangular and sqrtT is a zero matrix of the same size
115 // pre: T is quasi-upper-triangular and diagonal blocks of sqrtT are square root of diagonal blocks of T.
253 * \brief Class for computing matrix square roots of upper triangular matrices.
257 * This class computes the square root of the upper triangular matrix
258 * stored in the upper triangular part (including the diagonal) of
277 * Only the upper triangular part (including the diagonal) of
297 // Compute square root of T and store it in upper triangular part of result
316 tmp.noalias() = U * result.template triangularView<Upper>();