Home | History | Annotate | Download | only in Core

Lines Matching refs:UpLo

32 template<typename MatrixType, unsigned int UpLo>
33 struct traits<SelfAdjointView<MatrixType, UpLo> > : traits<MatrixType>
40 Mode = UpLo | SelfAdjoint,
53 template<typename MatrixType, unsigned int UpLo> class SelfAdjointView
54 : public TriangularBase<SelfAdjointView<MatrixType, UpLo> >
152 const LLT<PlainObject, UpLo> llt() const;
153 const LDLT<PlainObject, UpLo> ldlt() const;
170 OtherPart = UpLo == Upper ? StrictlyLower : StrictlyUpper
172 m_matrix.const_cast_derived().template triangularView<UpLo>() = other;
180 OtherPart = UpLo == Upper ? StrictlyLower : StrictlyUpper
182 m_matrix.const_cast_derived().template triangularView<UpLo>() = other.toDenseMatrix();
193 // template<typename OtherDerived, typename MatrixType, unsigned int UpLo>
194 // internal::selfadjoint_matrix_product_returntype<OtherDerived,SelfAdjointView<MatrixType,UpLo> >
195 // operator*(const MatrixBase<OtherDerived>& lhs, const SelfAdjointView<MatrixType,UpLo>& rhs)
197 // return internal::matrix_selfadjoint_product_returntype<OtherDerived,SelfAdjointView<MatrixType,UpLo> >(lhs.derived(),rhs);
297 template<unsigned int UpLo>
298 typename MatrixBase<Derived>::template ConstSelfAdjointViewReturnType<UpLo>::Type
305 template<unsigned int UpLo>
306 typename MatrixBase<Derived>::template SelfAdjointViewReturnType<UpLo>::Type