47 double eval(
double *par,
double x){
return (par[0]-par[1])/(1+pow(x/par[2], par[3]))+par[1];};
void calculateFitCurveData(double *X, double *Y)
Calculates the data for the output fit curve and store itin the X an Y vectors.
Definition: LogisticFit.cpp:88
LogisticFit(ApplicationWindow *parent, QwtPlotCurve *)
Definition: LogisticFit.cpp:38
A 2D-plotting widget.
Definition: Graph.h:123
void init()
Definition: LogisticFit.cpp:73
double eval(double *par, double x)
Calculates the data for the output fit curve.
Definition: LogisticFit.h:47
Fit base class.
Definition: Fit.h:44
QtiPlot's main window.
Definition: ApplicationWindow.h:133
void guessInitialValues()
Definition: LogisticFit.cpp:112
double * x()
Returns the x values of the input data set.
Definition: Filter.h:98
MDI window providing a spreadsheet table with column logic.
Definition: Table.h:57
Definition: LogisticFit.h:34