HomeSort by relevance Sort by last modified time
    Searched refs:selfadjointView (Results 26 - 45 of 45) sorted by null

12

  /external/eigen/Eigen/src/PaStiXSupport/
PaStiXSupport.h 623 out.template selfadjointView<Lower>() = matrix.template selfadjointView<UpLo>();
705 out.template selfadjointView<Lower>() = matrix.template selfadjointView<UpLo>();
  /external/eigen/Eigen/src/PardisoSupport/
PardisoSupport.h 516 m_matrix.template selfadjointView<Upper>() = matrix.template selfadjointView<UpLo>().twistedBy(p_null);
575 m_matrix.template selfadjointView<Upper>() = matrix.template selfadjointView<UpLo>().twistedBy(p_null);
  /external/eigen/unsupported/test/
forward_adolc.cpp 141 A.selfadjointView<Lower>().eigenvalues();
  /external/eigen/Eigen/src/Core/
SelfAdjointView.h 15 /** \class SelfAdjointView
25 * with given dense storage of the coefficients. It is the return type of MatrixBase::selfadjointView()
28 * \sa class TriangularBase, MatrixBase::selfadjointView()
33 struct traits<SelfAdjointView<MatrixType, UpLo> > : traits<MatrixType>
53 template<typename MatrixType, unsigned int UpLo> class SelfAdjointView
54 : public TriangularBase<SelfAdjointView<MatrixType, UpLo> >
58 typedef TriangularBase<SelfAdjointView> Base;
59 typedef typename internal::traits<SelfAdjointView>::MatrixTypeNested MatrixTypeNested;
60 typedef typename internal::traits<SelfAdjointView>::MatrixTypeNestedCleaned MatrixTypeNestedCleaned;
63 typedef typename internal::traits<SelfAdjointView>::Scalar Scalar;
    [all...]
MatrixBase.h 251 template<unsigned int UpLo> struct SelfAdjointViewReturnType { typedef SelfAdjointView<Derived, UpLo> Type; };
252 template<unsigned int UpLo> struct ConstSelfAdjointViewReturnType { typedef const SelfAdjointView<const Derived, UpLo> Type; };
254 template<unsigned int UpLo> typename SelfAdjointViewReturnType<UpLo>::Type selfadjointView();
255 template<unsigned int UpLo> typename ConstSelfAdjointViewReturnType<UpLo>::Type selfadjointView() const;
TriangularMatrix.h 344 const SelfAdjointView<MatrixTypeNestedNonRef,Mode> selfadjointView() const
347 return SelfAdjointView<MatrixTypeNestedNonRef,Mode>(m_matrix);
349 SelfAdjointView<MatrixTypeNestedNonRef,Mode> selfadjointView()
352 return SelfAdjointView<MatrixTypeNestedNonRef,Mode>(m_matrix);
726 typedef SelfAdjointView<MatrixType, Upper> type;
  /external/eigen/Eigen/src/Eigenvalues/
Tridiagonalization.h 366 hCoeffs.tail(n-i-1).noalias() = (matA.bottomRightCorner(remainingSize,remainingSize).template selfadjointView<Lower>()
371 matA.bottomRightCorner(remainingSize, remainingSize).template selfadjointView<Lower>()
SelfAdjointEigenSolver.h 571 scaledMat = scaledMat.template selfadjointView<Lower>();
  /external/eigen/bench/btl/libs/eigen3/
eigen3_interface.hh 101 X.template selfadjointView<Lower>().rankUpdate(A);
109 X.noalias() = (A.template selfadjointView<Lower>() * B);
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 261 ap.template selfadjointView<Upper>() = a.template selfadjointView<UpLo>().twistedBy(m_P);
680 C = a.template selfadjointView<UpLo>();
693 ap.template selfadjointView<Upper>() = a.template selfadjointView<UpLo>().twistedBy(m_P);
  /external/eigen/Eigen/src/CholmodSupport/
CholmodSupport.h 253 cholmod_sparse A = viewAsCholmod(matrix.template selfadjointView<UpLo>());
271 cholmod_sparse A = viewAsCholmod(matrix.template selfadjointView<UpLo>());
  /external/eigen/Eigen/src/SparseCore/
SparseMatrixBase.h 383 template<unsigned int UpLo> inline const SparseSelfAdjointView<Derived, UpLo> selfadjointView() const;
384 template<unsigned int UpLo> inline SparseSelfAdjointView<Derived, UpLo> selfadjointView();
SparseSelfAdjointView.h 24 * with given dense storage of the coefficients. It is the return type of MatrixBase::selfadjointView()
27 * \sa SparseMatrixBase::selfadjointView()
62 eigen_assert(rows()==cols() && "SelfAdjointView is only for squared matrices");
157 const SparseSelfAdjointView<Derived, UpLo> SparseMatrixBase<Derived>::selfadjointView() const
164 SparseSelfAdjointView<Derived, UpLo> SparseMatrixBase<Derived>::selfadjointView()
  /external/eigen/test/
sparse_solver.h 149 halfA.template selfadjointView<Solver::UpLo>().rankUpdate(M);
212 halfA.template selfadjointView<Solver::UpLo>() = it.matrix().template triangularView<Eigen::Lower>().twistedBy(pnull);
sparse_basic.cpp 356 // test selfadjointView
362 refMat3 = refMat2.template selfadjointView<Lower>();
363 m3 = m2.template selfadjointView<Lower>();
  /external/eigen/Eigen/src/IterativeLinearSolvers/
ConjugateGradient.h 211 internal::conjugate_gradient(mp_matrix->template selfadjointView<UpLo>(), b.col(j), xj,
  /external/ceres-solver/internal/ceres/
schur_complement_solver.cc 136 .selfadjointView<Eigen::Upper>()
schur_eliminator_impl.h 270 .template selfadjointView<Eigen::Upper>()
  /external/eigen/Eigen/src/Cholesky/
LLT.h 317 if(rs>0) A22.template selfadjointView<Lower>().rankUpdate(A21,-1); // bottleneck
480 inline const LLT<typename SelfAdjointView<MatrixType, UpLo>::PlainObject, UpLo>
481 SelfAdjointView<MatrixType, UpLo>::llt() const
  /external/eigen/blas/
level3_impl.h 483 if(UPLO(*uplo)==UP) matrix(c,*m,*n,*ldc) += alpha * matrix(b,*m,*n,*ldb) * matrix(a,*n,*n,*lda).selfadjointView<Upper>();/*internal::product_selfadjoint_matrix<Scalar,DenseIndex,ColMajor,false,false, RowMajor,true,Conj, ColMajor>
    [all...]

Completed in 1112 milliseconds

12