NumeRe v1.1.4
NumeRe: Framework für Numerische Rechnungen
|
#include <iostream>
#include <vector>
#include <string>
#include <gsl/gsl_multifit_nlin.h>
#include <gsl/gsl_blas.h>
#include <gsl/gsl_vector.h>
#include "../ParserLib/muParser.h"
#include "../utils/tools.hpp"
#include "../ui/error.hpp"
Go to the source code of this file.
Classes | |
struct | FitData |
Defines the datapoints, which shall be fitted. More... | |
class | Fitcontroller |
This class contains the internal fit logic and the interface to the GSL fitting module. More... | |
Typedefs | |
typedef std::vector< double > | FitVector |
Typedef for readability. More... | |
typedef std::vector< std::vector< double > > | FitMatrix |
Typedef for readability. More... | |
typedef std::vector<std::vector<double> > FitMatrix |
Typedef for readability.
Definition at line 49 of file fitcontroller.hpp.
typedef std::vector<double> FitVector |
Typedef for readability.
Definition at line 44 of file fitcontroller.hpp.