Lines Matching refs:MatrixBase
3 /** \page TopicCustomizing_Plugins Extending MatrixBase (and other classes)
5 … to add custom methods to MatrixBase. Since all expressions and matrix types inherit MatrixBase, a…
7 …w that's possible ? Here the trick is to include in the declaration of MatrixBase a file defined b…
9 class MatrixBase {
16 Therefore to extend MatrixBase with your own methods you just have to create a file with your metho…
20 Here is an example of an extension file for adding methods to MatrixBase: \n
33 inline Scalar squaredDistanceTo(const MatrixBase<OtherDerived>& other) const
37 inline RealScalar distanceTo(const MatrixBase<OtherDerived>& other) const
49 void makeFloor(const MatrixBase<OtherDerived>& other) { derived() = derived().cwiseMin(other.derive…
51 void makeCeil(const MatrixBase<OtherDerived>& other) { derived() = derived().cwiseMax(other.derived…
58 operator+(const Scalar& scalar, const MatrixBase<Derived>& mat)