#include <math.h>
#include <stdlib.h>
#include <stdio.h>
#include <stddef.h>
#include <qmessagebox.h>
#include <gsl/gsl_blas.h>
#include <gsl/gsl_math.h>
#include "fit_gsl.h"
#include "MyParser.h"
Functions | |
double | boltzmann_d (const gsl_vector *x, void *params) |
int | boltzmann_df (const gsl_vector *x, void *params, gsl_matrix *J) |
int | boltzmann_f (const gsl_vector *x, void *params, gsl_vector *f) |
int | boltzmann_fdf (const gsl_vector *x, void *params, gsl_vector *f, gsl_matrix *J) |
double | exp_d (const gsl_vector *x, void *params) |
int | exp_df (const gsl_vector *x, void *params, gsl_matrix *J) |
int | exp_f (const gsl_vector *x, void *params, gsl_vector *f) |
int | exp_fdf (const gsl_vector *x, void *params, gsl_vector *f, gsl_matrix *J) |
double | expd2_d (const gsl_vector *x, void *params) |
int | expd2_df (const gsl_vector *x, void *params, gsl_matrix *J) |
int | expd2_f (const gsl_vector *x, void *params, gsl_vector *f) |
int | expd2_fdf (const gsl_vector *x, void *params, gsl_vector *f, gsl_matrix *J) |
double | expd3_d (const gsl_vector *x, void *params) |
int | expd3_df (const gsl_vector *x, void *params, gsl_matrix *J) |
int | expd3_f (const gsl_vector *x, void *params, gsl_vector *f) |
int | expd3_fdf (const gsl_vector *x, void *params, gsl_vector *f, gsl_matrix *J) |
double | gauss_d (const gsl_vector *x, void *params) |
int | gauss_df (const gsl_vector *x, void *params, gsl_matrix *J) |
int | gauss_f (const gsl_vector *x, void *params, gsl_vector *f) |
int | gauss_fdf (const gsl_vector *x, void *params, gsl_vector *f, gsl_matrix *J) |
double | gauss_multi_peak_d (const gsl_vector *x, void *params) |
int | gauss_multi_peak_df (const gsl_vector *x, void *params, gsl_matrix *J) |
int | gauss_multi_peak_f (const gsl_vector *x, void *params, gsl_vector *f) |
int | gauss_multi_peak_fdf (const gsl_vector *x, void *params, gsl_vector *f, gsl_matrix *J) |
double | logistic_d (const gsl_vector *x, void *params) |
int | logistic_df (const gsl_vector *x, void *params, gsl_matrix *J) |
int | logistic_f (const gsl_vector *x, void *params, gsl_vector *f) |
int | logistic_fdf (const gsl_vector *x, void *params, gsl_vector *f, gsl_matrix *J) |
double | lorentz_multi_peak_d (const gsl_vector *x, void *params) |
int | lorentz_multi_peak_df (const gsl_vector *x, void *params, gsl_matrix *J) |
int | lorentz_multi_peak_f (const gsl_vector *x, void *params, gsl_vector *f) |
int | lorentz_multi_peak_fdf (const gsl_vector *x, void *params, gsl_vector *f, gsl_matrix *J) |
double | user_d (const gsl_vector *x, void *params) |
int | user_df (const gsl_vector *x, void *params, gsl_matrix *J) |
int | user_f (const gsl_vector *x, void *params, gsl_vector *f) |
int | user_fdf (const gsl_vector *x, void *params, gsl_vector *f, gsl_matrix *J) |
double boltzmann_d | ( | const gsl_vector * | x, | |
void * | params | |||
) |
int boltzmann_df | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_matrix * | J | |||
) |
int boltzmann_f | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_vector * | f | |||
) |
int boltzmann_fdf | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_vector * | f, | |||
gsl_matrix * | J | |||
) |
double exp_d | ( | const gsl_vector * | x, | |
void * | params | |||
) |
int exp_df | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_matrix * | J | |||
) |
int exp_f | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_vector * | f | |||
) |
int exp_fdf | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_vector * | f, | |||
gsl_matrix * | J | |||
) |
double expd2_d | ( | const gsl_vector * | x, | |
void * | params | |||
) |
int expd2_df | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_matrix * | J | |||
) |
int expd2_f | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_vector * | f | |||
) |
int expd2_fdf | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_vector * | f, | |||
gsl_matrix * | J | |||
) |
double expd3_d | ( | const gsl_vector * | x, | |
void * | params | |||
) |
int expd3_df | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_matrix * | J | |||
) |
int expd3_f | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_vector * | f | |||
) |
int expd3_fdf | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_vector * | f, | |||
gsl_matrix * | J | |||
) |
double gauss_d | ( | const gsl_vector * | x, | |
void * | params | |||
) |
int gauss_df | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_matrix * | J | |||
) |
int gauss_f | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_vector * | f | |||
) |
int gauss_fdf | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_vector * | f, | |||
gsl_matrix * | J | |||
) |
double gauss_multi_peak_d | ( | const gsl_vector * | x, | |
void * | params | |||
) |
int gauss_multi_peak_df | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_matrix * | J | |||
) |
int gauss_multi_peak_f | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_vector * | f | |||
) |
int gauss_multi_peak_fdf | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_vector * | f, | |||
gsl_matrix * | J | |||
) |
double logistic_d | ( | const gsl_vector * | x, | |
void * | params | |||
) |
int logistic_df | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_matrix * | J | |||
) |
int logistic_f | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_vector * | f | |||
) |
int logistic_fdf | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_vector * | f, | |||
gsl_matrix * | J | |||
) |
double lorentz_multi_peak_d | ( | const gsl_vector * | x, | |
void * | params | |||
) |
int lorentz_multi_peak_df | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_matrix * | J | |||
) |
int lorentz_multi_peak_f | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_vector * | f | |||
) |
int lorentz_multi_peak_fdf | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_vector * | f, | |||
gsl_matrix * | J | |||
) |
double user_d | ( | const gsl_vector * | x, | |
void * | params | |||
) |
int user_df | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_matrix * | J | |||
) |
int user_f | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_vector * | f | |||
) |
int user_fdf | ( | const gsl_vector * | x, | |
void * | params, | |||
gsl_vector * | f, | |||
gsl_matrix * | J | |||
) |