1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-06-14 13:57:06 +01:00

Merge pull request #18 from AndrewYongZhenNing/develop

Changed linear model's parameters
This commit is contained in:
2020-05-08 18:53:05 +01:00
committed by GitHub

View File

@ -117,7 +117,7 @@ DoubleModel CorrelatorModels::makeLinearModel(void)
mod.setFunction([](const double *x, const double *p)
{
return p[0] + p[1]*x[0];
return p[1] + p[0]*x[0];
}, 1, 2);
return mod;