1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-09-20 13:35:38 +01:00
LatAnalyze/latan/Sample.hpp

28 lines
512 B
C++

#ifndef LATAN_SAMPLE_HPP_
#define LATAN_SAMPLE_HPP_
#include <latan/Global.hpp>
#include <latan/Mat.hpp>
LATAN_BEGIN_CPPDECL
const int Central = -1;
typedef Eigen::Array<DMat, Eigen::Dynamic, 1> DSampleBase;
class DSample: public DSampleBase
{
public:
// Constructors/destructor
DSample(void);
DSample(const unsigned int nSample, const unsigned int nRow,
const unsigned int nCol);
~DSample(void);
// Operators
DMat& operator()(const int s);
};
LATAN_END_CPPDECL
#endif