Searched refs:m_U (Results 1 - 4 of 4) sorted by relevance

/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixExponential.h108 * Computes \c m_U, \c m_V and \c m_squarings such that
141 MatrixType m_U; member in class:Eigen::MatrixExponential
165 m_U(M.rows(),M.cols()),
187 m_tmp1 = m_U + m_V; // numerator of Pade approximant
188 m_tmp2 = -m_U + m_V; // denominator of Pade approximant
200 m_U.noalias() = A * m_tmp2;
211 m_U.noalias() = A * m_tmp2;
223 m_U.noalias() = A * m_tmp2;
237 m_U.noalias() = A * m_tmp2;
253 m_U
[all...]
H A DMatrixFunction.h164 MatrixType m_U; /**< \brief Unitary part of Schur decomposition */ member in class:Eigen::MatrixFunction
212 result = m_U * (m_fT.template triangularView<Upper>() * m_U.adjoint());
215 /** \brief Store the Schur decomposition of #m_A in #m_T and #m_U */
221 m_U = schurOfA.matrixU();
331 /** \brief Permute Schur decomposition in #m_U and #m_T according to #m_permutation */
349 /** \brief Swap rows \a index and \a index+1 in Schur decomposition in #m_U and #m_T */
357 m_U.applyOnTheRight(index, index+1, rotation);
H A DMatrixPower.h330 ComplexMatrix m_T, m_U, m_fT; member in class:Eigen::MatrixPower
383 m_U = schurOfA.matrixU();
421 revertSchur(m_tmp, m_fT, m_U);
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DDGMRES.h232 mutable DenseMatrix m_U; // Vectors that form the basis of the invariant subspace member in class:Eigen::DGMRES
233 mutable DenseMatrix m_MU; // matrix operator applied to m_U (for next cycles)
237 mutable int m_r; // Current number of deflated eigenvalues, size of m_U
394 m_U.resize(rows, m_maxNeig);
477 // Orthogonalize X against m_U using modified Gram-Schmidt
480 X.col(j) = X.col(j) - (m_U.col(k).dot(X.col(j)))*m_U.col(k);
499 m_T.block(0, m_r, m_r, nbrEig) = m_U.leftCols(m_r).transpose() * MX;
503 // Save X into m_U and m_MX in m_MU
504 for (int j = 0; j < nbrEig; j++) m_U
[all...]

Completed in 79 milliseconds