Beispiel #1
0
static VALUE rb_gsl_sf_legendre_Ql_e(VALUE obj, VALUE l, VALUE x)
{
    return rb_gsl_sf_eval_e_int_double(gsl_sf_legendre_Ql_e, l, x);
}
Beispiel #2
0
static VALUE rb_gsl_sf_taylorcoeff_e(VALUE obj, VALUE n, VALUE x)
{
  return rb_gsl_sf_eval_e_int_double(gsl_sf_taylorcoeff_e, n, x);
}
Beispiel #3
0
static VALUE rb_gsl_sf_psi_n_e(VALUE obj, VALUE m, VALUE x)
{
    return rb_gsl_sf_eval_e_int_double(gsl_sf_psi_n_e, m, x);
}
Beispiel #4
0
static VALUE rb_gsl_sf_fermi_dirac_int_e(VALUE obj, VALUE j, VALUE x)
{
  return rb_gsl_sf_eval_e_int_double(gsl_sf_fermi_dirac_int_e, j, x);
}