#include <BALL/QSAR/nonlinearModel.h>
#include <gsl/gsl_multifit_nlin.h>
#include <gsl/gsl_deriv.h>
#include <gsl/gsl_math.h>
#include <BALL/MATHS/parsedFunction.h>
Go to the source code of this file.
|
double | BALL::QSAR::getFunctionValue (double X, void *params) |
|
int | BALL::QSAR::setF (const gsl_vector *x, void *params, gsl_vector *f) |
|
int | BALL::QSAR::setDf (const gsl_vector *x, void *params, gsl_matrix *df) |
|
int | BALL::QSAR::setFdf (const gsl_vector *x, void *params, gsl_vector *f, gsl_matrix *df) |
|
gsl_multifit_function_fdf | BALL::QSAR::make_fdf (int(*f)(const gsl_vector *, void *, gsl_vector *), int(*df)(const gsl_vector *, void *, gsl_matrix *), int(*fdf)(const gsl_vector *, void *, gsl_vector *, gsl_matrix *), size_t n, size_t p, void *params) |
|