Home
last modified time | relevance | path

Searched refs:makeGivens (Results 1 – 15 of 15) sorted by relevance

/external/eigen/Eigen/src/Eigenvalues/
DRealQZ.h239 G.makeGivens(m_S.coeff(i-1,j), m_S.coeff(i,j), &m_S.coeffRef(i-1, j)); in hessenbergTriangular()
250 G.makeGivens(m_T.coeff(i,i), m_T.coeff(i,i-1), &m_T.coeffRef(i,i)); in hessenbergTriangular()
333 G.makeGivens(p + z, STi(1,0)); in splitOffTwoRows()
335 G.makeGivens(p - z, STi(1,0)); in splitOffTwoRows()
342 G.makeGivens(m_T.coeff(i+1,i+1), m_T.coeff(i+1,i)); in splitOffTwoRows()
369 G.makeGivens(m_T.coeff(zz, zz+1), m_T.coeff(zz+1, zz+1)); in pushDownZero()
379 G.makeGivens(m_S.coeff(zz+1, zz), m_S.coeff(zz+1,zz-1)); in pushDownZero()
389 G.makeGivens(m_S.coeff(l,l), m_S.coeff(l,l-1)); in pushDownZero()
523 G.makeGivens(m_T.coeff(k+1,k+1), m_T.coeff(k+1,k)); in step()
539 G.makeGivens(x,y); in step()
[all …]
DComplexSchur.h433 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));
DRealSchur.h401 rot.makeGivens(p + z, m_matT.coeff(iu, iu-1)); in splitOffTwoRows()
403 rot.makeGivens(p - z, m_matT.coeff(iu, iu-1)); in splitOffTwoRows()
DSelfAdjointEigenSolver.h834 rot.makeGivens(x, z);
/external/eigen/Eigen/src/Jacobi/
DJacobi.h68 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) in makeGivens() function
151makeGivens(p, q, z, typename internal::conditional<NumTraits<Scalar>::IsComplex, internal::true_ty… in makeGivens()
157 void JacobiRotation<Scalar>::makeGivens(const Scalar& p, const Scalar& q, Scalar* r, internal::true… in makeGivens() function
216 void JacobiRotation<Scalar>::makeGivens(const Scalar& p, const Scalar& q, Scalar* r, internal::fals… in makeGivens() function
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
Dr1updt.h42 givens.makeGivens(-v[n-1], v[j]); in r1updt()
68 givens.makeGivens(-s(j,j), w[j]); in r1updt()
Drwupdt.h34 givens[j].makeGivens(-r(j,j), rowj); in rwupdt()
Dqrsolv.h55 givens.makeGivens(-s(k,k), sdiag[k]); in qrsolv()
/external/eigen/doc/snippets/
DJacobi_makeGivens.cpp3 G.makeGivens(v.x(), v.y());
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
DLMqrsolv.h67 givens.makeGivens(-s(k,k), sdiag[k]); in lmqrsolv()
151 givens.makeGivens(-itk.value(), sdiag(k)); in lmqrsolv()
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
DGMRES.h150 G[k - 1].makeGivens(v(k - 1), v(k)); in gmres()
DDGMRES.h336 gr[it].makeGivens(m_H(it, it), m_H(it+1,it));
/external/eigen/Eigen/src/Cholesky/
DLLT.h255 g.makeGivens(mat(i,i), -temp(i), &mat(i,i)); in llt_rank_update_lower()
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
DMatrixPower.h509 rot.makeGivens(m_T.coeff(j-1,j), eigenvalue); in initialize()
DMatrixFunction.h231 rotation.makeGivens(T(k, k+1), T(k+1, k+1) - T(k, k)); in matrix_function_permute_schur()