Lines Matching refs:MatrixBase
5 … global methods, \ref ExtendingMatrixBase "by adding custom methods to MatrixBase", adding support…
9 \section ExtendingMatrixBase Extending MatrixBase (and other classes)
11 … to add custom methods to MatrixBase. Since all expressions and matrix types inherit MatrixBase, a…
13 …w that's possible ? Here the trick is to include in the declaration of MatrixBase a file defined b…
15 class MatrixBase {
22 Therefore to extend MatrixBase with your own methods you just have to create a file with your metho…
26 Here is an example of an extension file for adding methods to MatrixBase: \n
39 inline Scalar squaredDistanceTo(const MatrixBase<OtherDerived>& other) const
43 inline RealScalar distanceTo(const MatrixBase<OtherDerived>& other) const
55 void makeFloor(const MatrixBase<OtherDerived>& other) { derived() = derived().cwiseMin(other.derive…
57 void makeCeil(const MatrixBase<OtherDerived>& other) { derived() = derived().cwiseMax(other.derived…
64 operator+(const Scalar& scalar, const MatrixBase<Derived>& mat)
97 MyVectorType(const Eigen::MatrixBase<OtherDerived>& other)
103 MyVectorType & operator= (const Eigen::MatrixBase <OtherDerived>& other)
114 (((Eigen::MatrixBase<Eigen::Matrix<std::complex<float>, 10000, 1, 2, 10000,
115 1> >*)(& delta)) + 8u)->Eigen::MatrixBase<Derived>::cwise [with Derived =
120 Eigen::MatrixBase<Eigen::Matrix<std::complex<float>, 10000, 1, 2, 10000, 1>
121 >&)(((const Eigen::MatrixBase<Eigen::Matrix<std::complex<float>, 10000, 1,