2014-03-03 12:41:48 +00:00
|
|
|
#include <iostream>
|
2016-03-16 13:05:56 +00:00
|
|
|
#include <cmath>
|
2019-02-10 00:23:36 +00:00
|
|
|
#include <LatAnalyze/Functional/CompiledModel.hpp>
|
|
|
|
#include <LatAnalyze/Io/Io.hpp>
|
|
|
|
#include <LatAnalyze/Numerical/GslMinimizer.hpp>
|
|
|
|
#include <LatAnalyze/Core/Plot.hpp>
|
|
|
|
#include <LatAnalyze/Statistics/XYStatData.hpp>
|
2014-03-03 12:41:48 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Latan;
|
|
|
|
|
2016-03-30 15:19:11 +01:00
|
|
|
const Index nPoint1 = 10, nPoint2 = 10;
|
2016-04-04 19:09:18 +01:00
|
|
|
const double xErr = .1, yErr = .3;
|
2016-03-23 17:08:25 +00:00
|
|
|
const double exactPar[2] = {0.5,5.};
|
|
|
|
const double dx1 = 10.0/static_cast<double>(nPoint1);
|
|
|
|
const double dx2 = 5.0/static_cast<double>(nPoint2);
|
2016-03-16 13:05:56 +00:00
|
|
|
|
2014-03-03 12:41:48 +00:00
|
|
|
int main(void)
|
|
|
|
{
|
2016-03-16 13:05:56 +00:00
|
|
|
// generate fake data
|
2016-04-06 20:04:23 +01:00
|
|
|
XYStatData data;
|
|
|
|
random_device rd;
|
|
|
|
mt19937 gen(rd());
|
|
|
|
normal_distribution<> dis;
|
|
|
|
double xBuf[2];
|
|
|
|
DoubleModel f([](const double *x, const double *p)
|
|
|
|
{return p[1]*exp(-x[0]*p[0])+x[1];}, 2, 2);
|
2016-03-16 13:05:56 +00:00
|
|
|
|
2016-04-04 19:09:18 +01:00
|
|
|
cout << "-- generating fake data..." << endl;
|
2016-03-31 12:12:30 +01:00
|
|
|
data.addXDim(nPoint1);
|
|
|
|
data.addXDim(nPoint2);
|
|
|
|
data.addYDim();
|
2016-03-23 17:08:25 +00:00
|
|
|
for (Index i1 = 0; i1 < nPoint1; ++i1)
|
2016-03-16 13:05:56 +00:00
|
|
|
{
|
2016-03-23 17:08:25 +00:00
|
|
|
xBuf[0] = i1*dx1;
|
2016-04-06 20:04:23 +01:00
|
|
|
data.x(i1, 0) = xErr*dis(gen) + xBuf[0];
|
2016-03-23 17:08:25 +00:00
|
|
|
for (Index i2 = 0; i2 < nPoint2; ++i2)
|
|
|
|
{
|
2016-04-04 19:09:18 +01:00
|
|
|
xBuf[1] = i2*dx2;
|
|
|
|
data.x(i2, 1) = xBuf[1];
|
2016-04-06 20:04:23 +01:00
|
|
|
data.y(data.dataIndex(i1, i2), 0) = yErr*dis(gen)
|
|
|
|
+ f(xBuf, exactPar);
|
2016-03-23 17:08:25 +00:00
|
|
|
}
|
2016-03-16 13:05:56 +00:00
|
|
|
}
|
2016-03-23 17:08:25 +00:00
|
|
|
data.setXError(0, DVec::Constant(data.getXSize(0), xErr));
|
|
|
|
data.assumeXExact(true, 1);
|
|
|
|
data.setYError(0, DVec::Constant(data.getYSize(), yErr));
|
2016-03-16 13:05:56 +00:00
|
|
|
|
2016-04-01 21:40:22 +01:00
|
|
|
// set minimizers
|
2016-04-12 20:10:37 +01:00
|
|
|
DVec init = DVec::Constant(2, 0.1);
|
|
|
|
FitResult p;
|
|
|
|
GslMinimizer min(GslMinimizer::Algorithm::bfgs2);
|
2014-03-03 12:41:48 +00:00
|
|
|
|
2016-04-01 21:40:22 +01:00
|
|
|
// fit
|
2016-04-12 20:10:37 +01:00
|
|
|
min.setVerbosity(Minimizer::Verbosity::Debug);
|
2016-04-04 19:09:18 +01:00
|
|
|
cout << "-- fit..." << endl;
|
2016-03-31 12:12:30 +01:00
|
|
|
f.parName().setName(0, "m");
|
|
|
|
f.parName().setName(1, "A");
|
2016-04-01 21:40:22 +01:00
|
|
|
p = data.fit(min, init, f);
|
2016-03-31 12:12:30 +01:00
|
|
|
p.print();
|
2014-03-03 12:41:48 +00:00
|
|
|
|
2016-04-04 19:09:18 +01:00
|
|
|
// plot
|
|
|
|
Plot plot;
|
|
|
|
DVec ref(2);
|
|
|
|
XYStatData res;
|
|
|
|
|
|
|
|
cout << "-- generating plots..." << endl;
|
|
|
|
ref(1) = 0.;
|
|
|
|
res = data.getPartialResiduals(p, ref, 0);
|
|
|
|
plot << PlotRange(Axis::x, 0., 10.);
|
|
|
|
plot << Color("rgb 'blue'");
|
|
|
|
plot << PlotFunction(p.getModel().bind(0, ref), 0., 10.);
|
|
|
|
plot << Color("rgb 'red'");
|
|
|
|
plot << PlotData(res);
|
|
|
|
plot.display();
|
|
|
|
|
2014-03-03 12:41:48 +00:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|