2014-03-03 12:41:48 +00:00
|
|
|
/*
|
|
|
|
* Model.cpp, 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/>.
|
|
|
|
*/
|
|
|
|
|
2014-03-13 18:51:01 +00:00
|
|
|
#include <LatAnalyze/Model.hpp>
|
|
|
|
#include <LatAnalyze/includes.hpp>
|
2014-03-03 17:01:07 +00:00
|
|
|
#include <functional>
|
2014-03-03 12:41:48 +00:00
|
|
|
|
|
|
|
using namespace std;
|
2014-03-03 17:01:07 +00:00
|
|
|
using namespace std::placeholders;
|
2014-03-03 12:41:48 +00:00
|
|
|
using namespace Latan;
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Model implementation *
|
|
|
|
******************************************************************************/
|
|
|
|
// constructor /////////////////////////////////////////////////////////////////
|
|
|
|
DoubleModel::DoubleModel(const Index nArg, const Index nPar, const vecFunc &f)
|
|
|
|
: size_(new ModelSize)
|
|
|
|
{
|
|
|
|
setFunction(nArg, nPar, f);
|
|
|
|
}
|
|
|
|
|
|
|
|
// access //////////////////////////////////////////////////////////////////////
|
|
|
|
Index DoubleModel::getNArg(void) const
|
|
|
|
{
|
|
|
|
return size_->nArg;
|
|
|
|
}
|
|
|
|
|
|
|
|
Index DoubleModel::getNPar(void) const
|
|
|
|
{
|
|
|
|
return size_->nPar;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DoubleModel::setFunction(const Index nArg, const Index nPar,
|
|
|
|
const vecFunc &f)
|
|
|
|
{
|
|
|
|
size_->nArg = nArg;
|
|
|
|
size_->nPar = nPar;
|
|
|
|
f_ = f;
|
|
|
|
}
|
|
|
|
|
|
|
|
// error checking //////////////////////////////////////////////////////////////
|
|
|
|
void DoubleModel::checkSize(const Index nArg, const Index nPar) const
|
|
|
|
{
|
|
|
|
if (nArg != getNArg())
|
|
|
|
{
|
|
|
|
LATAN_ERROR(Size, "model argument vector has a wrong size (expected "
|
|
|
|
+ strFrom(getNArg()) + ", got " + strFrom(nArg)
|
|
|
|
+ ")");
|
|
|
|
}
|
|
|
|
if (nPar != getNPar())
|
|
|
|
{
|
|
|
|
LATAN_ERROR(Size, "model parameter vector has a wrong size (expected "
|
|
|
|
+ strFrom(getNPar()) + ", got " + strFrom(nPar)
|
|
|
|
+ ")");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// function call ///////////////////////////////////////////////////////////////
|
|
|
|
double DoubleModel::operator()(const DVec &arg, const DVec &par) const
|
|
|
|
{
|
|
|
|
checkSize(arg.size(), par.size());
|
|
|
|
|
2014-03-13 18:20:40 +00:00
|
|
|
return (*this)(arg.data(), par.data());
|
2014-03-03 12:41:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
double DoubleModel::operator()(const vector<double> &arg,
|
|
|
|
const vector<double> &par) const
|
|
|
|
{
|
|
|
|
checkSize(static_cast<Index>(arg.size()), static_cast<Index>(par.size()));
|
|
|
|
|
2014-03-13 18:20:40 +00:00
|
|
|
return (*this)(arg.data(), par.data());
|
2014-03-03 12:41:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
double DoubleModel::operator()(const double *data, const double *par) const
|
|
|
|
{
|
2014-03-17 14:59:39 +00:00
|
|
|
return f_(data, par);
|
2014-03-03 12:41:48 +00:00
|
|
|
}
|
2014-03-03 17:01:07 +00:00
|
|
|
|
|
|
|
// model bind //////////////////////////////////////////////////////////////////
|
|
|
|
DoubleFunction DoubleModel::getBind(const DVec &par) const
|
|
|
|
{
|
|
|
|
auto modelWithVec = [this](const double *_arg, const DVec &_par)
|
|
|
|
{return (*this)(_arg, _par.data());};
|
|
|
|
auto modelBind = bind(modelWithVec, _1, par);
|
|
|
|
|
|
|
|
return DoubleFunction(getNArg(), modelBind);
|
|
|
|
}
|