예제 #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);
}
예제 #2
0
파일: sf_gamma.c 프로젝트: Zenexer/rb-gsl
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);
}
예제 #3
0
파일: sf_psi.c 프로젝트: gbence/rb-gsl-1
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);
}
예제 #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);
}