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>
49 template<typename _MatrixType, unsigned int UpLo> class SelfAdjointView
50 : public TriangularBase<SelfAdjointView<_MatrixType, UpLo> >
55 typedef TriangularBase<SelfAdjointView> Base;
56 typedef typename internal::traits<SelfAdjointView>::MatrixTypeNested MatrixTypeNested;
57 typedef typename internal::traits<SelfAdjointView>::MatrixTypeNestedCleaned MatrixTypeNestedCleaned;
61 typedef typename internal::traits<SelfAdjointView>::Scalar Scalar;
    [all...]
TriangularMatrix.h 288 * This is a shortcut for \code this->nestedExpression().selfadjointView<(*this)::Mode>() \endcode
289 * \sa MatrixBase::selfadjointView() */
291 SelfAdjointView<MatrixTypeNestedNonRef,Mode> selfadjointView()
294 return SelfAdjointView<MatrixTypeNestedNonRef,Mode>(m_matrix);
297 /** This is the const version of selfadjointView() */
299 const SelfAdjointView<MatrixTypeNestedNonRef,Mode> selfadjointView() const
302 return SelfAdjointView<MatrixTypeNestedNonRef,Mode>(m_matrix);
    [all...]
  /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()
64 eigen_assert(rows()==cols() && "SelfAdjointView is only for squared matrices");
175 typename SparseMatrixBase<Derived>::template ConstSelfAdjointViewReturnType<UpLo>::Type SparseMatrixBase<Derived>::selfadjointView() const
182 typename SparseMatrixBase<Derived>::template SelfAdjointViewReturnType<UpLo>::Type SparseMatrixBase<Derived>::selfadjointView()
207 // TODO currently a selfadjoint expression has the form SelfAdjointView<.,.>
209 // such that Transpose<SelfAdjointView<.,.> > is valid. (currently TriangularBase::transpose() is overloaded to make it work)

Completed in 221 milliseconds