Exemplo n.º 1
0
static VALUE rb_gsl_sf_legendre_Ql(VALUE obj, VALUE l, VALUE x)
{
    return rb_gsl_sf_eval_int_double(gsl_sf_legendre_Ql, l, x);
}
Exemplo n.º 2
0
static VALUE rb_gsl_sf_taylorcoeff(VALUE obj, VALUE n, VALUE x)
{
  return rb_gsl_sf_eval_int_double(gsl_sf_taylorcoeff, n, x);
}
Exemplo n.º 3
0
static VALUE rb_gsl_sf_psi_n(VALUE obj, VALUE m, VALUE x)
{
    return rb_gsl_sf_eval_int_double(gsl_sf_psi_n, m, x);
}
Exemplo n.º 4
0
static VALUE rb_gsl_sf_fermi_dirac_int(VALUE obj, VALUE j, VALUE x)
{
  return rb_gsl_sf_eval_int_double(gsl_sf_fermi_dirac_int, j, x);
}