Home | History | Annotate | Download | only in MatrixFunctions

Lines Matching defs:compute

37       * changed (or destroyed) before compute() is called.
45 /** \brief Compute the matrix square root
53 template <typename ResultType> void compute(ResultType &result);
80 void MatrixSquareRootQuasiTriangular<MatrixType>::compute(ResultType &result)
82 // Compute Schur decomposition of m_A
87 // Compute square root of T
92 // Compute square root of m_A
273 /** \brief Compute the matrix square root
282 template <typename ResultType> void compute(ResultType &result);
290 void MatrixSquareRootTriangular<MatrixType>::compute(ResultType &result)
292 // Compute Schur decomposition of m_A
297 // Compute square root of T and store it in upper triangular part of result
314 // Compute square root of m_A as U * result * U.adjoint()
338 * changed (or destroyed) before compute() is called.
342 /** \brief Compute the matrix square root
349 template <typename ResultType> void compute(ResultType &result);
366 template <typename ResultType> void compute(ResultType &result)
368 // Compute Schur decomposition of m_A
373 // Compute square root of T
376 tmp.compute(sqrtT);
378 // Compute square root of m_A
400 template <typename ResultType> void compute(ResultType &result)
402 // Compute Schur decomposition of m_A
407 // Compute square root of T
410 tmp.compute(sqrtT);
412 // Compute square root of m_A
445 /** \brief Compute the matrix square root.
455 me.compute(result);