1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-08-06 15:37:10 +01:00

cleaner Eigen expression integration and constructor inheritance for StatArray and derived

This commit is contained in:
2014-02-17 18:50:03 +00:00
parent f7345ea717
commit b53b47fcda
6 changed files with 20 additions and 17 deletions

View File

@@ -34,17 +34,11 @@ public:
// constructors
DMat(void);
DMat(const unsigned int nRow, const unsigned int nCol);
template <typename Derived>
DMat(const Eigen::EigenBase<Derived> &m);
EIGEN_EXPR_CTOR(DMat, DMat, Base, MatrixBase);
// IO
virtual IoType getType(void) const;
};
template <typename Derived>
DMat::DMat(const Eigen::EigenBase<Derived> &m)
: Base(m)
{}
END_NAMESPACE
#endif // Latan_Mat_hpp_