Lines Matching refs:MatrixBase
79 …e Matrix class inherits a base class, MatrixBase. Don't worry about it, for now it suffices to say…
108 …et the size of the vector, this is actually a method in the base class MatrixBase. It determines t…
126 …ecialization of Matrix (as we explained above), which is a subclass of MatrixBase. So what is bein…
129 MatrixBase::operator+(const MatrixBase&)
146 …ression types, is a subclass of MatrixBase. So it is enough to define once and for all the operato…
148 Since MatrixBase is the common base class of different subclasses, the aspects that depend on the s…
152 …hat we want is to have a single class MatrixBase as the base of many subclasses, in such a way tha…
156 …MatrixBase takes a template parameter \a Derived. Whenever we define a subclass Subclass, we actua…
158 …MatrixBase, and have only the bare minimum in the subclasses. If you look at the subclasses in Eig…
166 …w that MatrixBase is a good friend, let's write fully the prototype of the operator+ that gets cal…
170 class MatrixBase
176 operator+(const MatrixBase<OtherDerived> &other) const;
198 class MatrixBase<VectorXf>
203 operator+(const MatrixBase<VectorXf> &other) const;
224 inline Matrix& operator=(const MatrixBase<OtherDerived>& other)
230 …a typedef for MatrixBase\<Matrix\>. So, what is being called is the operator= of MatrixBase. Let's…
233 Derived& operator=(const MatrixBase<OtherDerived>& other);
241 VectorXf& MatrixBase<VectorXf>::operator=(const MatrixBase<CwiseBinaryOp<internal::scalar_sum_op<fl…
251 inline Derived& MatrixBase<Derived>
252 ::operator=(const MatrixBase<OtherDerived>& other)
296 inline Derived& MatrixBase<Derived>
297 ::lazyAssign(const MatrixBase<OtherDerived>& other)
380 inline void MatrixBase<Derived>::copyPacket(int index, const MatrixBase<OtherDerived>& other)
428 Here, \a other is our sum expression \a v + \a w. The .derived() is just casting from MatrixBase to…