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:
@@ -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_
|
||||
|
Reference in New Issue
Block a user