HomeSort by relevance Sort by last modified time
    Searched refs:makeGivens (Results 1 - 15 of 15) sorted by null

  /external/eigen/doc/snippets/
Jacobi_makeGivens.cpp 3 G.makeGivens(v.x(), v.y());
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
r1updt.h 42 givens.makeGivens(-v[n-1], v[j]);
68 givens.makeGivens(-s(j,j), w[j]);
rwupdt.h 34 givens[j].makeGivens(-r(j,j), rowj);
qrsolv.h 55 givens.makeGivens(-s(k,k), sdiag[k]);
  /external/eigen/Eigen/src/Eigenvalues/
RealQZ.h 239 G.makeGivens(m_S.coeff(i-1,j), m_S.coeff(i,j), &m_S.coeffRef(i-1, j));
250 G.makeGivens(m_T.coeff(i,i), m_T.coeff(i,i-1), &m_T.coeffRef(i,i));
333 G.makeGivens(p + z, STi(1,0));
335 G.makeGivens(p - z, STi(1,0));
342 G.makeGivens(m_T.coeff(i+1,i+1), m_T.coeff(i+1,i));
369 G.makeGivens(m_T.coeff(zz, zz+1), m_T.coeff(zz+1, zz+1));
379 G.makeGivens(m_S.coeff(zz+1, zz), m_S.coeff(zz+1,zz-1));
389 G.makeGivens(m_S.coeff(l,l), m_S.coeff(l,l-1));
523 G.makeGivens(m_T.coeff(k+1,k+1), m_T.coeff(k+1,k));
539 G.makeGivens(x,y)
    [all...]
ComplexSchur.h 433 rot.makeGivens(m_matT.coeff(il,il) - shift, m_matT.coeff(il+1,il));
440 rot.makeGivens(m_matT.coeffRef(i,i-1), m_matT.coeffRef(i+1,i-1), &m_matT.coeffRef(i,i-1));
RealSchur.h 401 rot.makeGivens(p + z, m_matT.coeff(iu, iu-1));
403 rot.makeGivens(p - z, m_matT.coeff(iu, iu-1));
SelfAdjointEigenSolver.h 834 rot.makeGivens(x, z);
    [all...]
  /external/eigen/Eigen/src/Jacobi/
Jacobi.h 68 void makeGivens(const Scalar& p, const Scalar& q, Scalar* z=0);
71 void makeGivens(const Scalar& p, const Scalar& q, Scalar* z, internal::true_type);
72 void makeGivens(const Scalar& p, const Scalar& q, Scalar* z, internal::false_type);
149 void JacobiRotation<Scalar>::makeGivens(const Scalar& p, const Scalar& q, Scalar* z)
151 makeGivens(p, q, z, typename internal::conditional<NumTraits<Scalar>::IsComplex, internal::true_type, internal::false_type>::type());
157 void JacobiRotation<Scalar>::makeGivens(const Scalar& p, const Scalar& q, Scalar* r, internal::true_type)
216 void JacobiRotation<Scalar>::makeGivens(const Scalar& p, const Scalar& q, Scalar* r, internal::false_type)
  /external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
LMqrsolv.h 67 givens.makeGivens(-s(k,k), sdiag[k]);
151 givens.makeGivens(-itk.value(), sdiag(k));
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
GMRES.h 150 G[k - 1].makeGivens(v(k - 1), v(k));
DGMRES.h 336 gr[it].makeGivens(m_H(it, it), m_H(it+1,it));
  /external/eigen/Eigen/src/Cholesky/
LLT.h 255 g.makeGivens(mat(i,i), -temp(i), &mat(i,i));
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixPower.h 509 rot.makeGivens(m_T.coeff(j-1,j), eigenvalue);
MatrixFunction.h 231 rotation.makeGivens(T(k, k+1), T(k+1, k+1) - T(k, k));

Completed in 439 milliseconds