Home
last modified time | relevance | path

Searched refs:gsl_function_fdf (Results 1 – 25 of 634) sorted by relevance

12345678910>>...26

/dports/math/py-pygsl/pygsl-2.3.0/typemaps/
H A Dgsl_function_typemaps.i47 %typemap(arginit) gsl_function_fdf * FREE = gsl_function * FREE;
67 %typemap(check) gsl_function_fdf * FREE {
85 %typemap(freearg) gsl_function_fdf * FREE {
203 %typemap(arginit) gsl_function_fdf * BUFFER = gsl_function * BUFFER;
213 %apply gsl_fdfsolver * BUFFER {gsl_function_fdf * BUFFER};
239 %apply gsl_function * {gsl_function_fdf *,
251 %apply gsl_function * STORE {gsl_function_fdf * STORE,
264 %apply gsl_function_fdf * FREE {gsl_function_fdf * FREE,
/dports/audio/praat/praat-6.2.03/external/gsl/
H A Dgsl_roots__newton.c48 static int newton_init (void * vstate, gsl_function_fdf * fdf, double * root);
49 static int newton_iterate (void * vstate, gsl_function_fdf * fdf, double * root);
52 newton_init (void * vstate, gsl_function_fdf * fdf, double * root) in newton_init()
66 newton_iterate (void * vstate, gsl_function_fdf * fdf, double * root) in newton_iterate()
H A Dgsl_roots__secant.c55 static int secant_init (void * vstate, gsl_function_fdf * fdf, double * root);
56 static int secant_iterate (void * vstate, gsl_function_fdf * fdf, double * root);
59 secant_init (void * vstate, gsl_function_fdf * fdf, double * root) in secant_init()
72 secant_iterate (void * vstate, gsl_function_fdf * fdf, double * root) in secant_iterate()
H A Dgsl_roots__steffenson.c59 static int steffenson_init (void * vstate, gsl_function_fdf * fdf, double * root);
60 static int steffenson_iterate (void * vstate, gsl_function_fdf * fdf, double * root);
63 steffenson_init (void * vstate, gsl_function_fdf * fdf, double * root)
83 steffenson_iterate (void * vstate, gsl_function_fdf * fdf, double * root)
H A Dgsl_roots.h63 int (*set) (void *state, gsl_function_fdf * f, double * root);
64 int (*iterate) (void *state, gsl_function_fdf * f, double * root);
71 gsl_function_fdf * fdf ;
98 gsl_function_fdf * fdf, double root);
H A Dgsl_roots__fdfsolver.c55 gsl_root_fdfsolver_set (gsl_root_fdfsolver * s, gsl_function_fdf * f, double root) in gsl_root_fdfsolver_set()
/dports/math/gsl/gsl-2.7/roots/
H A Dnewton.c48 static int newton_init (void * vstate, gsl_function_fdf * fdf, double * root);
49 static int newton_iterate (void * vstate, gsl_function_fdf * fdf, double * root);
52 newton_init (void * vstate, gsl_function_fdf * fdf, double * root) in newton_init()
66 newton_iterate (void * vstate, gsl_function_fdf * fdf, double * root) in newton_iterate()
H A Dsecant.c55 static int secant_init (void * vstate, gsl_function_fdf * fdf, double * root);
56 static int secant_iterate (void * vstate, gsl_function_fdf * fdf, double * root);
59 secant_init (void * vstate, gsl_function_fdf * fdf, double * root) in secant_init()
72 secant_iterate (void * vstate, gsl_function_fdf * fdf, double * root) in secant_iterate()
H A Dsteffenson.c59 static int steffenson_init (void * vstate, gsl_function_fdf * fdf, double * root);
60 static int steffenson_iterate (void * vstate, gsl_function_fdf * fdf, double * root);
63 steffenson_init (void * vstate, gsl_function_fdf * fdf, double * root) in steffenson_init()
83 steffenson_iterate (void * vstate, gsl_function_fdf * fdf, double * root) in steffenson_iterate()
H A Dgsl_roots.h63 int (*set) (void *state, gsl_function_fdf * f, double * root);
64 int (*iterate) (void *state, gsl_function_fdf * f, double * root);
71 gsl_function_fdf * fdf ;
98 gsl_function_fdf * fdf, double root);
H A Dtest.h21 gsl_function_fdf create_fdf (double (*f)(double, void *),
46 gsl_function_fdf *fdf, double root, double correct_root);
50 gsl_function_fdf *fdf, double root, double correct_root);
H A Dtest_funcs.c36 gsl_function_fdf create_fdf (double (*f)(double, void *), in create_fdf()
40 gsl_function_fdf FDF ; in create_fdf()
H A Dtest.c48 gsl_function_fdf FDF_sin, FDF_cos, FDF_func1, FDF_func2, FDF_func3, FDF_func4, in main()
240 gsl_function_fdf *fdf, double root, double correct_root) in test_fdf()
282 const char * description, gsl_function_fdf *fdf, in test_fdf_e()
H A Dfdfsolver.c55 gsl_root_fdfsolver_set (gsl_root_fdfsolver * s, gsl_function_fdf * f, double root) in gsl_root_fdfsolver_set()
/dports/math/py-pygsl/pygsl-2.3.0/src/callback/
H A Dgsl_callback.i33 gsl_function_fdf * gsl_function_init_fdf(gsl_function_fdf * STORE) in gsl_function_init_fdf()
44 void gsl_function_free_fdf(gsl_function_fdf * FREE) in gsl_function_free_fdf()
H A Dgsl_roots.i43 extern int gsl_root_fdfsolver_set (gsl_root_fdfsolver * s, gsl_function_fdf * BUFFER, double ROOT);
/dports/math/p5-Math-GSL/Math-GSL-0.43/swig/
H A DRoots.i19 %typemap(freearg) gsl_function_fdf *;
/dports/math/gsl/gsl-2.7/doc/examples/
H A Drootnewt.c17 gsl_function_fdf FDF; in main()
/dports/math/py-pygsl/pygsl-2.3.0/pygsl/
H A Dminimize.py41 from .gsl_function import gsl_function, gsl_function_fdf
H A Droots.py36 from .gsl_function import gsl_function_fdf, gsl_function
/dports/math/py-pygsl/pygsl-2.3.0/testing/src/solvers/
H A Dfunction_helpers.c452 PyGSL_SOLVER_API_EXTERN gsl_function_fdf *
456 gsl_function_fdf * F = NULL;
465 if ((F = (gsl_function_fdf *) malloc(sizeof(gsl_function_fdf))) == NULL){
/dports/astro/astrometry/astrometry.net-0.85/gsl-an/gsl/
H A Dgsl_math.h143 typedef struct gsl_function_fdf_struct gsl_function_fdf ; typedef
/dports/astro/astrometry/astrometry.net-0.85/gsl-an/
H A Dgsl_math.h143 typedef struct gsl_function_fdf_struct gsl_function_fdf ; typedef
/dports/graphics/xaos/XaoS-release-4.2.1/src/include/gsl/
H A Dgsl_math.h142 typedef struct gsl_function_fdf_struct gsl_function_fdf; typedef
/dports/math/gsl/gsl-2.7/
H A Dgsl_math.h143 typedef struct gsl_function_fdf_struct gsl_function_fdf ; typedef

12345678910>>...26