Searched refs:m_V (Results 1 - 2 of 2) 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
144 MatrixType m_V; member in class:Eigen::MatrixExponential
166 m_V(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
201 m_V = b[2]*m_tmp1 + b[0]*m_Id;
212 m_V = b[4]*m_tmp1 + b[2]*A2 + b[0]*m_Id;
224 m_V = b[6]*m_tmp1 + b[4]*A4 + b[2]*A2 + b[0]*m_Id;
238 m_V = b[8]*m_tmp1 + b[6]*A6 + b[4]*A4 + b[2]*A2 + b[0]*m_Id;
250 m_V
[all...]
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DDGMRES.h228 mutable DenseMatrix m_V; // Krylov basis vectors member in class:Eigen::DGMRES
265 m_V.resize(n,m_restart+1);
306 m_V.col(0) = r0/beta;
317 dgmresApplyDeflation(m_V.col(it), tv1); // Deflation
322 tv2 = precond.solve(m_V.col(it)); // User's selected preconditioner
330 coef = tv1.dot(m_V.col(i));
331 tv1 = tv1 - coef * m_V.col(i);
337 m_V.col(it+1) = tv1/coef;
376 tv1 = m_V.leftCols(it) * nrs;
381 x = x + precond.solve(m_V
[all...]

Completed in 93 milliseconds