1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-11-10 00:45:36 +00:00
LatAnalyze/examples/exFit.cpp

18 lines
268 B
C++
Raw Normal View History

2014-03-03 12:41:48 +00:00
#include <iostream>
2016-03-08 19:37:51 +00:00
#include <LatAnalyze/FitInterface.hpp>
2014-03-03 12:41:48 +00:00
using namespace std;
using namespace Latan;
int main(void)
{
2016-03-08 19:37:51 +00:00
FitInterface f;
2014-03-03 12:41:48 +00:00
2016-03-08 19:37:51 +00:00
f.addXDim("a", 3);
f.addXDim("b", 4);
f.addXDim("c", 3);
f.addYDim("y");
2014-03-03 12:41:48 +00:00
return EXIT_SUCCESS;
}