Searched refs:CoefficientsType (Results 1 – 1 of 1) sorted by relevance
/external/eigen/Eigen/src/Core/ |
D | BandMatrix.h | 36 typedef typename internal::traits<Derived>::CoefficientsType CoefficientsType; typedef 60 inline const CoefficientsType& coeffs() const { return derived().coeffs(); } in coeffs() 63 inline CoefficientsType& coeffs() { return derived().coeffs(); } in coeffs() 68 inline Block<CoefficientsType,Dynamic,1> col(Index i) in col() 80 return Block<CoefficientsType,Dynamic,1>(coeffs(), start, i, len, 1); in col() 84 inline Block<CoefficientsType,1,SizeAtCompileTime> diagonal() in diagonal() 85 …{ return Block<CoefficientsType,1,SizeAtCompileTime>(coeffs(),supers(),0,1,(std::min)(rows(),cols(… in diagonal() 88 inline const Block<const CoefficientsType,1,SizeAtCompileTime> diagonal() const in diagonal() 89 …{ return Block<const CoefficientsType,1,SizeAtCompileTime>(coeffs(),supers(),0,1,(std::min)(rows()… in diagonal() 102 typedef Block<CoefficientsType,1, DiagonalSize> BuildType; [all …]
|