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

  /external/eigen/test/
product_syrk.cpp 38 VERIFY_IS_APPROX((m2.template selfadjointView<Lower>().rankUpdate(rhs2,s1)._expression()),
46 VERIFY_IS_APPROX(m2.template selfadjointView<Upper>().rankUpdate(rhs2,s1)._expression(),
54 VERIFY_IS_APPROX(m2.template selfadjointView<Lower>().rankUpdate(rhs1.adjoint(),s1)._expression(),
62 VERIFY_IS_APPROX(m2.template selfadjointView<Upper>().rankUpdate(rhs1.adjoint(),s1)._expression(),
69 VERIFY_IS_APPROX(m2.template selfadjointView<Lower>().rankUpdate(rhs3.adjoint(),s1)._expression(),
73 VERIFY_IS_APPROX(m2.template selfadjointView<Upper>().rankUpdate(rhs3.adjoint(),s1)._expression(),
77 VERIFY_IS_APPROX((m2.template selfadjointView<Lower>().rankUpdate(m1.col(c),s1)._expression()),
81 VERIFY_IS_APPROX((m2.template selfadjointView<Upper>().rankUpdate(m1.col(c),s1)._expression()),
84 VERIFY_IS_APPROX((rm2.template selfadjointView<Upper>().rankUpdate(m1.col(c),s1)._expression()),
94 VERIFY_IS_APPROX((m2.template selfadjointView<Lower>().rankUpdate(m1.col(c).conjugate(),s1)._expression())
    [all...]
product_selfadjoint.cpp 42 m2.template selfadjointView<Lower>().rankUpdate(v1,v2);
46 m2.template selfadjointView<Upper>().rankUpdate(-v1,s2*v2,s3);
50 m2.template selfadjointView<Upper>().rankUpdate(-s2*r1.adjoint(),r2.adjoint()*s3,s1);
56 m2.block(1,1,rows-1,cols-1).template selfadjointView<Lower>().rankUpdate(v1.tail(rows-1),v2.head(cols-1));
nomalloc.cpp 80 m2.template selfadjointView<Lower>().rankUpdate(m1.col(0),-1);
81 m2.template selfadjointView<Upper>().rankUpdate(m1.row(0),-1);
82 m2.template selfadjointView<Lower>().rankUpdate(m1.col(0), m1.col(0)); // rank-2
85 m2.template selfadjointView<Lower>().rankUpdate(m1);
cholesky.cpp 50 chollo.rankUpdate(vec, sigma);
53 cholup.rankUpdate(vec, sigma);
product_notemporary.cpp 100 VERIFY_EVALUATION_COUNT( m3.template selfadjointView<Lower>().rankUpdate(m2.adjoint()), 0);
sparse_solver.h 232 halfA.template selfadjointView<Solver::UpLo>().rankUpdate(M);
  /external/eigen/Eigen/src/Cholesky/
LLT_LAPACKE.h 72 static Index rankUpdate(MatrixType& mat, const VectorType& vec, const typename MatrixType::RealScalar& sigma) \
83 static Index rankUpdate(MatrixType& mat, const VectorType& vec, const typename MatrixType::RealScalar& sigma) \
86 return llt_inplace<EIGTYPE, Lower>::rankUpdate(matt, vec.conjugate(), sigma); \
LLT.h 199 LLT rankUpdate(const VectorType& vec, const RealScalar& sigma = 1);
354 if(rs>0) A22.template selfadjointView<Lower>().rankUpdate(A21,typename NumTraits<RealScalar>::Literal(-1)); // bottleneck
360 static Index rankUpdate(MatrixType& mat, const VectorType& vec, const RealScalar& sigma)
383 static Index rankUpdate(MatrixType& mat, const VectorType& vec, const RealScalar& sigma)
386 return llt_inplace<Scalar, Lower>::rankUpdate(matt, vec.conjugate(), sigma);
457 LLT<_MatrixType,_UpLo> LLT<_MatrixType,_UpLo>::rankUpdate(const VectorType& v, const RealScalar& sigma)
462 if(internal::llt_inplace<typename MatrixType::Scalar, UpLo>::rankUpdate(m_matrix,v,sigma)>=0)
LDLT.h 133 * \sa rankUpdate(w,sigma)
224 LDLT& rankUpdate(const MatrixBase<Derived>& w, const RealScalar& alpha=1);
530 LDLT<MatrixType,_UpLo>& LDLT<MatrixType,_UpLo>::rankUpdate(const MatrixBase<Derived>& w, const typename LDLT<MatrixType,_UpLo>::RealScalar& sigma)
  /external/eigen/Eigen/src/Core/products/
SelfadjointRank2Update.h 61 ::rankUpdate(const MatrixBase<DerivedU>& u, const MatrixBase<DerivedV>& v, const Scalar& alpha)
SelfadjointProduct.h 124 ::rankUpdate(const MatrixBase<DerivedU>& u, const Scalar& alpha)
  /external/eigen/Eigen/src/Core/
SelfAdjointView.h 148 * \sa rankUpdate(const MatrixBase<DerivedU>&, Scalar)
152 SelfAdjointView& rankUpdate(const MatrixBase<DerivedU>& u, const MatrixBase<DerivedV>& v, const Scalar& alpha = Scalar(1));
162 * \sa rankUpdate(const MatrixBase<DerivedU>&, const MatrixBase<DerivedV>&, Scalar)
166 SelfAdjointView& rankUpdate(const MatrixBase<DerivedU>& u, const Scalar& alpha = Scalar(1));
  /external/eigen/Eigen/src/Eigenvalues/
Tridiagonalization.h 373 .rankUpdate(matA.col(i).tail(remainingSize), hCoeffs.tail(remainingSize), Scalar(-1));
  /external/eigen/bench/btl/libs/eigen3/
eigen3_interface.hh 101 X.template selfadjointView<Lower>().rankUpdate(A);
  /external/eigen/Eigen/src/SparseCore/
SparseSelfAdjointView.h 123 SparseSelfAdjointView& rankUpdate(const SparseMatrixBase<DerivedU>& u, const Scalar& alpha = Scalar(1));
194 SparseSelfAdjointView<MatrixType,Mode>::rankUpdate(const SparseMatrixBase<DerivedU>& u, const Scalar& alpha)

Completed in 236 milliseconds