Enumeration

NumCosmoMathSplineGslType

Declaration

enum NumCosmoMath.SplineGslType

Description [src]

Enumeration to choose which GSL interpolation method as backend to be used by the object. It can be used with the function ncm_spline_gsl_new_by_id() when a new NcmSplineGsl is created.

Members

NCM_SPLINE_GSL_LINEAR

Uses gsl_interp_linear interpolation method.

  • Value: 0
  • Available since: 1.0
NCM_SPLINE_GSL_POLYNOMIAL

Uses gsl_interp_polynomial interpolation method.

  • Value: 1
  • Available since: 1.0
NCM_SPLINE_GSL_CSPLINE

Uses gsl_interp_cspline interpolation method.

  • Value: 2
  • Available since: 1.0
NCM_SPLINE_GSL_CSPLINE_PERIODIC

Uses gsl_interp_cspline_periodic interpolation method.

  • Value: 3
  • Available since: 1.0
NCM_SPLINE_GSL_AKIMA

Uses gsl_interp_akima interpolation method.

  • Value: 4
  • Available since: 1.0
NCM_SPLINE_GSL_AKIMA_PERIODIC

Uses gsl_interp_akima_periodic interpolation method.

  • Value: 5
  • Available since: 1.0