FGSL
Fortran interface for the GNU scientific library
|
Functions/Subroutines | |
type(fgsl_dht) function | fgsl_dht_alloc (size) |
integer(fgsl_int) function | fgsl_dht_init (t, nu, xmax) |
type(fgsl_dht) function | fgsl_dht_new (size, nu, xmax) |
subroutine | fgsl_dht_free (t) |
integer(fgsl_int) function | fgsl_dht_apply (t, f_in, f_out) |
real(fgsl_double) function | fgsl_dht_x_sample (t, n) |
real(fgsl_double) function | fgsl_dht_k_sample (t, n) |
logical function | fgsl_dht_status (dht) |
type(fgsl_dht) function fgsl_dht_alloc | ( | integer(fgsl_size_t), intent(in) | size | ) |
integer(fgsl_int) function fgsl_dht_apply | ( | type(fgsl_dht), intent(in) | t, |
real(fgsl_double), dimension(:), intent(in), target, contiguous | f_in, | ||
real(fgsl_double), dimension(:), intent(out), target, contiguous | f_out | ||
) |
subroutine fgsl_dht_free | ( | type(fgsl_dht), intent(inout) | t | ) |
integer(fgsl_int) function fgsl_dht_init | ( | type(fgsl_dht), intent(inout) | t, |
real(fgsl_double), intent(in) | nu, | ||
real(fgsl_double), intent(in) | xmax | ||
) |
real(fgsl_double) function fgsl_dht_k_sample | ( | type(fgsl_dht), intent(in) | t, |
integer(fgsl_int), intent(in) | n | ||
) |
type(fgsl_dht) function fgsl_dht_new | ( | integer(fgsl_size_t), intent(in) | size, |
real(fgsl_double), intent(in) | nu, | ||
real(fgsl_double), intent(in) | xmax | ||
) |
logical function fgsl_dht_status | ( | type(fgsl_dht), intent(in) | dht | ) |
real(fgsl_double) function fgsl_dht_x_sample | ( | type(fgsl_dht), intent(in) | t, |
integer(fgsl_int), intent(in) | n | ||
) |