HomeSort by relevance Sort by last modified time
    Searched defs:selfadjointView (Results 1 - 3 of 3) sorted by null

  /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...]
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/SparseCore/
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()

Completed in 77 milliseconds