Function
NumCosmoMathintegral_locked_a_inf
Declaration [src]
gint
ncm_integral_locked_a_inf (
gint* F,
gdouble a,
gdouble abstol,
gdouble reltol,
gdouble* result,
gdouble* error
)
Description [src]
This function uses a workspace from the pool and gsl_integration_qagiu function to perform the numerical integration in the $[a, \infty]$ interval.
This function is not directly available to language bindings.
Parameters
F-
Type:
gint*A gsl_function which is the integrand.
The data is owned by the caller of the function. a-
Type:
gdoubleLower integration limit.
abstol-
Type:
gdoubleAbsolute tolerance.
reltol-
Type:
gdoubleRelative tolerance.
result-
Type:
gdouble*A pointer to a gdouble in which the function stores the result.
The data is owned by the caller of the function. error-
Type:
gdouble*A pointer to a gdouble in which the function stores the estimated error.
The data is owned by the caller of the function.