コード例 #1
0
ファイル: sf_legendre.c プロジェクト: gbence/rb-gsl-1
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);
}