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

  /external/eigen/Eigen/src/SparseCore/
SparseTriangularView.h 20 * This class is an abstract base class of class TriangularView, and objects of type TriangularViewImpl cannot be instantiated.
21 * It extends class TriangularView with additional methods which are available for sparse expressions only.
23 * \sa class TriangularView, SparseMatrixBase::triangularView()
26 : public SparseMatrixBase<TriangularView<MatrixType,Mode> >
35 typedef TriangularView<MatrixType,Mode> TriangularViewType;
38 // dummy solve function to make TriangularView happy.
69 struct unary_evaluator<TriangularView<ArgType,Mode>, IteratorBased>
70 : evaluator_base<TriangularView<ArgType,Mode> >
72 typedef TriangularView<ArgType,Mode> XprType
    [all...]
  /external/eigen/Eigen/src/Core/
SelfAdjointView.h 173 * If \c TriMode references the same triangular part than \c *this, then this method simply return a \c TriangularView of the nested expression,
174 * otherwise, the nested expression is first transposed, thus returning a \c TriangularView<Transpose<MatrixType>> object.
176 * \sa MatrixBase::triangularView(), class TriangularView
181 TriangularView<MatrixType,TriMode>,
182 TriangularView<typename MatrixType::AdjointReturnType,TriMode> >::type
183 triangularView() const
188 TriangularView<MatrixType,TriMode>,
189 TriangularView<typename MatrixType::AdjointReturnType,TriMode> >::type(tmp2);
TriangularMatrix.h 150 /** \class TriangularView
163 * of MatrixBase::triangularView() and SparseMatrixBase::triangularView(), and most of the time this is the only way it is used.
165 * \sa MatrixBase::triangularView()
169 struct traits<TriangularView<MatrixType, _Mode> > : traits<MatrixType>
186 template<typename _MatrixType, unsigned int _Mode> class TriangularView
192 typedef typename internal::traits<TriangularView>::Scalar Scalar;
196 typedef typename internal::traits<TriangularView>::MatrixTypeNested MatrixTypeNested;
197 typedef typename internal::traits<TriangularView>::MatrixTypeNestedNonRef MatrixTypeNestedNonRef;
203 typedef typename internal::traits<TriangularView>::StorageKind StorageKind
    [all...]

Completed in 398 milliseconds