FGSL
Fortran interface for the GNU scientific library
|
Functions/Subroutines | |
type(c_ptr) function | gsl_cheb_alloc (n) |
subroutine | gsl_cheb_free (cs) |
integer(c_int) function | gsl_cheb_init (cs, f, a, b) |
integer(c_size_t) function | gsl_cheb_order (cs) |
integer(c_size_t) function | gsl_cheb_size (cs) |
type(c_ptr) function | gsl_cheb_coeffs (cs) |
real(c_double) function | gsl_cheb_eval (cs, x) |
integer(c_int) function | gsl_cheb_eval_err (cs, x, result, abserr) |
real(c_double) function | gsl_cheb_eval_n (cs, order, x) |
integer(c_int) function | gsl_cheb_eval_n_err (cs, order, x, result, abserr) |
integer(c_int) function | gsl_cheb_calc_deriv (deriv, cs) |
integer(c_int) function | gsl_cheb_calc_integ (integ, cs) |
type(c_ptr) function gsl_cheb_alloc | ( | integer(c_int), value | n | ) |
integer(c_int) function gsl_cheb_calc_deriv | ( | type(c_ptr), value | deriv, |
type(c_ptr), value | cs | ||
) |
integer(c_int) function gsl_cheb_calc_integ | ( | type(c_ptr), value | integ, |
type(c_ptr), value | cs | ||
) |
type(c_ptr) function gsl_cheb_coeffs | ( | type(c_ptr), value | cs | ) |
real(c_double) function gsl_cheb_eval | ( | type(c_ptr), value | cs, |
real(c_double), value | x | ||
) |
integer(c_int) function gsl_cheb_eval_err | ( | type(c_ptr), value | cs, |
real(c_double), value | x, | ||
real(c_double), intent(out) | result, | ||
real(c_double), intent(out) | abserr | ||
) |
real(c_double) function gsl_cheb_eval_n | ( | type(c_ptr), value | cs, |
integer(c_size_t), value | order, | ||
real(c_double), value | x | ||
) |
integer(c_int) function gsl_cheb_eval_n_err | ( | type(c_ptr), value | cs, |
integer(c_size_t), value | order, | ||
real(c_double), value | x, | ||
real(c_double), intent(out) | result, | ||
real(c_double), intent(out) | abserr | ||
) |
subroutine gsl_cheb_free | ( | type(c_ptr), value | cs | ) |
integer(c_int) function gsl_cheb_init | ( | type(c_ptr), value | cs, |
type(c_ptr), value | f, | ||
real(c_double), value | a, | ||
real(c_double), value | b | ||
) |
integer(c_size_t) function gsl_cheb_order | ( | type(c_ptr), value | cs | ) |
integer(c_size_t) function gsl_cheb_size | ( | type(c_ptr), value | cs | ) |