80 CMatrix(
size_t row,
size_t col) : CMatrixFloat(row,col)
85 CMatrix(
const CMatrixFloat &m ) : CMatrixFloat(m)
92 *
this = m.eval().cast<
float>();
113 template <
class OTHERMAT>
114 inline CMatrix & operator = (
const OTHERMAT& m)
116 CMatrixFloat::operator =(m);
121 template<
typename OtherDerived>
122 inline CMatrix & operator= (
const Eigen::MatrixBase <OtherDerived>& other) {
127 template<
typename OtherDerived>