2014-02-06 18:52:13 +00:00
|
|
|
/*
|
|
|
|
* Sample.hpp, part of LatAnalyze 3
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 - 2014 Antonin Portelli
|
|
|
|
*
|
|
|
|
* LatAnalyze 3 is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* LatAnalyze 3 is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with LatAnalyze 3. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef Latan_Sample_hpp_
|
|
|
|
#define Latan_Sample_hpp_
|
2013-05-01 14:35:30 +01:00
|
|
|
|
2013-05-21 18:02:42 +01:00
|
|
|
#include <latan/Global.hpp>
|
|
|
|
#include <latan/Mat.hpp>
|
2013-05-01 14:35:30 +01:00
|
|
|
|
2014-02-06 18:52:13 +00:00
|
|
|
BEGIN_NAMESPACE
|
2013-05-01 14:35:30 +01:00
|
|
|
|
|
|
|
const int Central = -1;
|
|
|
|
|
2014-01-22 15:57:47 +00:00
|
|
|
typedef Eigen::Array<DMat, Eigen::Dynamic, 1> DSampleBase;
|
|
|
|
|
|
|
|
class DSample: public DSampleBase
|
2013-05-01 14:35:30 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Constructors/destructor
|
2014-01-22 15:57:47 +00:00
|
|
|
DSample(void);
|
|
|
|
DSample(const unsigned int nSample, const unsigned int nRow,
|
|
|
|
const unsigned int nCol);
|
|
|
|
~DSample(void);
|
2013-05-01 14:35:30 +01:00
|
|
|
// Operators
|
|
|
|
DMat& operator()(const int s);
|
|
|
|
};
|
|
|
|
|
2014-02-06 18:52:13 +00:00
|
|
|
END_NAMESPACE
|
2013-05-01 14:35:30 +01:00
|
|
|
|
2014-02-06 18:52:13 +00:00
|
|
|
#endif // Latan_Sample_hpp_
|