2014-09-18 17:18:15 +01:00
|
|
|
/*
|
|
|
|
* TabFunction.hpp, part of LatAnalyze 3
|
|
|
|
*
|
2020-01-13 09:57:06 +00:00
|
|
|
* Copyright (C) 2013 - 2020 Antonin Portelli
|
2014-09-18 17:18:15 +01:00
|
|
|
*
|
|
|
|
* 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_TabFunction_hpp_
|
|
|
|
#define Latan_TabFunction_hpp_
|
|
|
|
|
|
|
|
#include <LatAnalyze/Global.hpp>
|
2019-02-10 00:23:36 +00:00
|
|
|
#include <LatAnalyze/Functional/Function.hpp>
|
|
|
|
#include <LatAnalyze/Core/Math.hpp>
|
|
|
|
#include <LatAnalyze/Statistics/XYStatData.hpp>
|
2014-09-18 17:18:15 +01:00
|
|
|
|
2015-01-28 17:15:05 +00:00
|
|
|
BEGIN_LATAN_NAMESPACE
|
2014-09-18 17:18:15 +01:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* tabulated function: 1D only *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2015-11-09 00:26:10 +00:00
|
|
|
enum class InterpType
|
|
|
|
{
|
|
|
|
NEAREST,
|
|
|
|
LINEAR,
|
|
|
|
QUADRATIC
|
|
|
|
};
|
|
|
|
|
2015-02-24 17:00:19 +00:00
|
|
|
class TabFunction: public DoubleFunctionFactory
|
2014-09-18 17:18:15 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructors
|
2015-02-24 17:00:19 +00:00
|
|
|
TabFunction(void) = default;
|
2015-11-09 00:26:10 +00:00
|
|
|
TabFunction(const DVec &x, const DVec &y,
|
|
|
|
const InterpType interpType = InterpType::LINEAR);
|
2014-09-18 17:18:15 +01:00
|
|
|
// destructor
|
|
|
|
virtual ~TabFunction(void) = default;
|
|
|
|
// access
|
|
|
|
void setData(const DVec &x, const DVec &y);
|
2017-07-19 18:03:22 +01:00
|
|
|
void setInterpolationType(const InterpType interpType);
|
2014-09-18 17:18:15 +01:00
|
|
|
// function call
|
2015-02-24 17:00:19 +00:00
|
|
|
double operator()(const double *arg) const;
|
|
|
|
// factory
|
|
|
|
virtual DoubleFunction makeFunction(const bool makeHardCopy = true) const;
|
2014-09-18 17:18:15 +01:00
|
|
|
private:
|
2015-11-10 12:23:29 +00:00
|
|
|
std::map<double, double>::const_iterator nearest(const double x) const;
|
|
|
|
|
2014-09-18 17:18:15 +01:00
|
|
|
std::map<double, double> value_;
|
2015-11-09 00:26:10 +00:00
|
|
|
InterpType interpType_;
|
2014-09-18 17:18:15 +01:00
|
|
|
};
|
|
|
|
|
2015-11-09 00:26:10 +00:00
|
|
|
DoubleFunction interpolate(const DVec &x, const DVec &y,
|
|
|
|
const InterpType interpType = InterpType::LINEAR);
|
2015-02-24 17:00:19 +00:00
|
|
|
|
2015-01-28 17:15:05 +00:00
|
|
|
END_LATAN_NAMESPACE
|
2014-09-18 17:18:15 +01:00
|
|
|
|
|
|
|
#endif // Latan_TabFunction_hpp_
|