FGSL
Fortran interface for the GNU scientific library
|
Functions/Subroutines | |
integer(c_int) function | gsl_fit_linear (x, xstride, y, ystride, n, c0, c1, cov00, cov01, cov11, sumsq) |
integer(c_int) function | gsl_fit_wlinear (x, xstride, w, wstride, y, ystride, n, c0, c1, cov00, cov01, cov11, chisq) |
integer(c_int) function | gsl_fit_linear_est (x, c0, c1, cov00, cov01, cov11, y, y_err) |
integer(c_int) function | gsl_fit_mul (x, xstride, y, ystride, n, c1, cov11, sumsq) |
integer(c_int) function | gsl_fit_wmul (x, xstride, w, wstride, y, ystride, n, c1, cov11, chisq) |
integer(c_int) function | gsl_fit_mul_est (x, c1, cov11, y, y_err) |
integer(c_int) function gsl_fit_linear | ( | type(c_ptr), value | x, |
integer(c_size_t), value | xstride, | ||
type(c_ptr), value | y, | ||
integer(c_size_t), value | ystride, | ||
integer(c_size_t), value | n, | ||
real(c_double) | c0, | ||
real(c_double) | c1, | ||
real(c_double) | cov00, | ||
real(c_double) | cov01, | ||
real(c_double) | cov11, | ||
real(c_double) | sumsq | ||
) |
integer(c_int) function gsl_fit_linear_est | ( | real(c_double), value | x, |
real(c_double), value | c0, | ||
real(c_double), value | c1, | ||
real(c_double), value | cov00, | ||
real(c_double), value | cov01, | ||
real(c_double), value | cov11, | ||
real(c_double) | y, | ||
real(c_double) | y_err | ||
) |
integer(c_int) function gsl_fit_mul | ( | type(c_ptr), value | x, |
integer(c_size_t), value | xstride, | ||
type(c_ptr), value | y, | ||
integer(c_size_t), value | ystride, | ||
integer(c_size_t), value | n, | ||
real(c_double) | c1, | ||
real(c_double) | cov11, | ||
real(c_double) | sumsq | ||
) |
integer(c_int) function gsl_fit_mul_est | ( | real(c_double), value | x, |
real(c_double), value | c1, | ||
real(c_double), value | cov11, | ||
real(c_double) | y, | ||
real(c_double) | y_err | ||
) |
integer(c_int) function gsl_fit_wlinear | ( | type(c_ptr), value | x, |
integer(c_size_t), value | xstride, | ||
type(c_ptr), value | w, | ||
integer(c_size_t), value | wstride, | ||
type(c_ptr), value | y, | ||
integer(c_size_t), value | ystride, | ||
integer(c_size_t), value | n, | ||
real(c_double) | c0, | ||
real(c_double) | c1, | ||
real(c_double) | cov00, | ||
real(c_double) | cov01, | ||
real(c_double) | cov11, | ||
real(c_double) | chisq | ||
) |
integer(c_int) function gsl_fit_wmul | ( | type(c_ptr), value | x, |
integer(c_size_t), value | xstride, | ||
type(c_ptr), value | w, | ||
integer(c_size_t), value | wstride, | ||
type(c_ptr), value | y, | ||
integer(c_size_t), value | ystride, | ||
integer(c_size_t), value | n, | ||
real(c_double) | c1, | ||
real(c_double) | cov11, | ||
real(c_double) | chisq | ||
) |