1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-09-20 05:25:37 +01:00
LatAnalyze/latan/Sample.h

30 lines
515 B
C
Raw Normal View History

2013-05-01 14:35:30 +01:00
#ifndef LATAN_SAMPLE_H_
#define LATAN_SAMPLE_H_
#include <latan/Global.h>
LATAN_BEGIN_CPPDECL
const int Central = -1;
class Sample
{
public:
// Constructors/destructor
Sample(void);
Sample(Sample &S);
Sample(const unsigned int init_nsample, const unsigned int init_nrow,\
const unsigned int init_ncol);
~Sample(void);
// Operators
DMat& operator()(const int s);
private:
DMat central;
Eigen::Array<DMat,Eigen::Dynamic,1> sample;
};
LATAN_END_CPPDECL
#endif