| NumCosmo Reference Manual | ||||
|---|---|---|---|---|
| Top | Description | Object Hierarchy | ||||
struct NcmSplineGsl; struct NcmSplineGslClass; NcmSpline * ncm_spline_gsl_new (const gsl_interp_type *type); NcmSpline * ncm_spline_gsl_new_full (const gsl_interp_type *type,NcmVector *xv,NcmVector *yv,gboolean init); void ncm_spline_gsl_set_type (NcmSplineGsl *sg,const gsl_interp_type *type);
This object comprises the proper functions to use the GNU Scientific Library (GSL) spline functions and interpolation methods.
NcmSpline * ncm_spline_gsl_new (const gsl_interp_type *type);
This function returns a new gsl NcmSpline which will use type
interpolation method.
|
gsl interpolation method. |
Returns : |
a new NcmSpline. |
NcmSpline * ncm_spline_gsl_new_full (const gsl_interp_type *type,NcmVector *xv,NcmVector *yv,gboolean init);
This function returns a new gsl NcmSpline setting all its members.
void ncm_spline_gsl_set_type (NcmSplineGsl *sg,const gsl_interp_type *type);
This function sets the interpolation method type to sg.
|
a NcmSplineGsl. |
|
gsl interpolation method. |