Home | History | Annotate | Download | only in MatrixFunctions

Lines Matching defs:compute

29   * \p AtomicType and uses these results to compute the matrix function of the whole matrix. The class
30 * \p AtomicType should have a \p compute() member function for computing the matrix function of a block.
47 * changed (or destroyed) before compute() is called.
51 /** \brief Compute the matrix function.
60 void compute(ResultType &result);
92 /** \brief Compute the matrix function.
102 void compute(ResultType& result)
107 mf.compute(Cresult);
144 template <typename ResultType> void compute(ResultType& result);
195 /** \brief Compute the matrix function.
202 void MatrixFunction<MatrixType,AtomicType,1>::compute(ResultType& result)
284 /** \brief Compute #m_clusterSize and #m_eivalToCluster using #m_clusters */
306 /** \brief Compute #m_blockStart using #m_clusterSize */
317 /** \brief Compute #m_permutation using #m_eivalToCluster and #m_blockStart */
359 /** \brief Compute block diagonal part of #m_fT.
371 block(m_fT, i, i) = m_atomic.compute(block(m_T, i, i));
382 /** \brief Compute part of #m_fT above block diagonal.
394 // compute (blockIndex, blockIndex+diagIndex) block
451 // Compute AX = \sum_{k=i+1}^m A_{ik} X_{kj}
460 // Compute XB = \sum_{k=1}^{j-1} X_{ik} B_{kj}
504 /** \brief Compute the matrix function.
524 mf.compute(result);