/dports/math/py-mpmath/mpmath-1.2.1/mpmath/tests/ |
H A D | test_functions2.py | 139 assert hyp2f1(1,2,3,0) == 1 523 assert hyp2f1(2,-1,-1,3).ae(7) 530 assert hyp2f1(1,2,3,0) == 1 531 assert hyp2f1(0,1,0,0) == 1 532 assert hyp2f1(0,0,0,0) == 1 533 assert isnan(hyp2f1(1,1,0,0)) 540 assert hyp2f1(-2,-2,1,1) == 6 542 assert hyp2f1(0,-6,-4,1) == 1 543 assert hyp2f1(0,-3,-4,1) == 1 544 assert hyp2f1(0,0,0,1) == 1 [all …]
|
/dports/math/gretl/gretl-2021d/cephes/ |
H A D | hyp2f1.c | 91 double hyp2f1 (double a, double b, double c, double x) in hyp2f1() function 128 return pow(s, d) * hyp2f1(c - a, c - b, c, x); in hyp2f1() 165 p = hyp2f1(a, 1 - c + a, 1 - b + a, 1.0 / x); in hyp2f1() 166 q = hyp2f1(b, 1 - c + b, 1 - a + b, 1.0 / x); in hyp2f1() 175 return pow(s, -a) * hyp2f1(a, c - b, c, x / (x - 1)); in hyp2f1() 177 return pow(s, -b) * hyp2f1(b, c - a, c, x / (x - 1)); in hyp2f1() 228 d2 = hyp2f1(a, b, e, x); in hyp2f1() 229 d1 = hyp2f1(a, b, e + 1.0, x); in hyp2f1()
|
H A D | cephes.h | 32 double hyp2f1 (double a, double b, double c, double x);
|
H A D | libprob.h | 165 double hyp2f1 (double a, double b, double c, double x);
|
/dports/science/py-scipy/scipy-1.7.1/scipy/special/cephes/ |
H A D | hyp2f1.c | 89 double hyp2f1(a, b, c, x) in hyp2f1() function 127 return pow(s, d) * hyp2f1(c - a, c - b, c, x); 170 p = hyp2f1(a, 1 - c + a, 1 - b + a, 1.0 / x); 171 q = hyp2f1(b, 1 - c + b, 1 - a + b, 1.0 / x); 181 return pow(s, -a) * hyp2f1(a, c - b, c, x / (x - 1)); 184 return pow(s, -b) * hyp2f1(b, c - a, c, x / (x - 1)); 235 d2 = hyp2f1(a, b, e, x); 236 d1 = hyp2f1(a, b, e + 1.0, x);
|
H A D | cephes_names.h | 38 #define hyp2f1 cephes_hyp2f1 macro
|
/dports/math/p5-Math-Cephes/Math-Cephes-0.5305/libmd/ |
H A D | hyp2f1.c | 102 double hyp2f1(double, double, double, double); 107 double hyp2f1(); 111 double hyp2f1( a, b, c, x ) in hyp2f1() function 225 d2 = hyp2f1(a,b,e,x); 226 d1 = hyp2f1(a,b,e+1.0,x);
|
/dports/math/grace/grace-5.1.25/cephes/ |
H A D | Make.common | 7 ellpe.c ellpk.c expn.c fac.c fdtr.c fresnl.c gamma.c gdtr.c hyp2f1.c \ 16 gamma$(O) gdtr$(O) hyp2f1$(O) hyperg$(O) i0$(O) i1$(O) igam$(O) \
|
H A D | hyp2f1.c | 99 double hyp2f1( a, b, c, x ) in hyp2f1() function 213 d2 = hyp2f1(a,b,e,x); 214 d1 = hyp2f1(a,b,e+1.0,x);
|
H A D | cephes.h | 30 extern double hyp2f1 ( double a, double b, double c, double x );
|
/dports/science/py-scipy/scipy-1.7.1/scipy/special/ |
H A D | orthogonal_eval.pxd | 35 from ._cephes cimport hyp2f1 as hyp2f1_wrap 44 cdef inline number_t hyp2f1(double a, double b, double c, number_t z) nogil: function 141 return d * hyp2f1(a, b, c, g) 191 return d * hyp2f1(a, b, c, g) 259 return hyp2f1(a, b, c, g) 293 return d*hyp2f1(a, b, c, g) 372 return d*hyp2f1(a, b, c, g)
|
H A D | cephes.h | 56 extern double hyp2f1(double a, double b, double c, double x);
|
/dports/math/p5-Math-Cephes/Math-Cephes-0.5305/t/ |
H A D | hypergeometrics.t | 35 ok(hyp2f1($x, $y, $z, $u), 1.03417940155);
|
/dports/science/py-scipy/scipy-1.7.1/doc/source/dev/contributor/ |
H A D | compiled_code.rst | 41 from scipy.special import hyp2f1 42 print(hyp2f1(5.0, 1.0, -1.8, 0.95))
|
/dports/math/py-mpmath/mpmath-1.2.1/mpmath/functions/ |
H A D | orthogonal.py | 339 return ctx.binomial(n+a,n) * ctx.hyp2f1(-n,1+n+a+b,a+1,(1-x)/2, **kwargs) 363 return ctx.hyp2f1(-n,n+1,1,(1-x)/2, **kwargs) 446 return ctx.hyp2f1(-n,n,(1,2),(1-x)/2, **kwargs) 452 return (n+1) * ctx.hyp2f1(-n, n+2, (3,2), (1-x)/2, **kwargs)
|
H A D | expintegrals.py | 116 v = x2**a * ctx.hyp2f1(a, 1-b, a+1, x2) / a 126 s1 = x2**a * ctx.hyp2f1(a,1-b,a+1,x2) 127 s2 = x1**a * ctx.hyp2f1(a,1-b,a+1,x1)
|
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/genmod/families/ |
H A D | family.py | 1438 def hyp2f1(x): function 1439 return special.hyp2f1(2 / 3., 1 / 3., 5 / 3., x) 1441 resid = (3 / 2. * (endog ** (2 / 3.) * hyp2f1(-self.alpha * endog) - 1442 mu ** (2 / 3.) * hyp2f1(-self.alpha * mu)) /
|
/dports/science/py-dipy/dipy-1.4.1/dipy/reconst/ |
H A D | shore.py | 8 from scipy.special import genlaguerre, gamma, hyp2f1 395 Fnl = hyp2f1(-n + l, l / 2 + 3.0 / 2.0, l + 3.0 / 2.0, 2.0) 480 hyp2f1(-n, 2.5, 1.5, 2) 647 hyp2f1(l - n, l / 2.0 + 1.5, l + 1.5, 2.0) * \
|
/dports/science/py-scipy/scipy-1.7.1/scipy/special/tests/ |
H A D | test_mpmath.py | 136 dataset = [p + (float(mpmath.hyp2f1(*p, **kw)),) for p in pts] 139 FuncData(sc.hyp2f1, dataset, (0,1,2,3), 4, rtol=1e-10).check() 167 dataset = [p + (float(mpmath.hyp2f1(*p)),) for p in pts] 171 FuncData(sc.hyp2f1, dataset, (0,1,2,3), 4, rtol=1e-10).check() 190 dataset = [tuple(map(fev, p)) + (float(mpmath.hyp2f1(*p)),) for p in pts] 193 FuncData(sc.hyp2f1, dataset, (0,1,2,3), 4, rtol=1e-10).check() 204 v = float(mpmath.hyp2f1(a, b, c, z)) 211 FuncData(sc.hyp2f1, dataset, (0,1,2,3), 4, rtol=1e-9, 236 ds[4] = float(mpmath.hyp2f1(*tuple(ds[:4]))) 238 FuncData(sc.hyp2f1, dataset, (0, 1, 2, 3), 4, rtol=1e-9).check() [all …]
|
H A D | test_cython_special.py | 150 (special.hyp2f1, cython_special.hyp2f1, ('dddd', 'dddD'), None),
|
/dports/math/py-algopy/algopy-0.5.7/algopy/nthderiv/ |
H A D | nthderiv.py | 258 (2, 1) : scipy.special.hyp2f1, 558 @basecase(scipy.special.hyp2f1, extras=3) 559 def hyp2f1(a1, a2, b1, x, out=None, n=0): function
|
/dports/math/py-mpmath/mpmath-1.2.1/mpmath/ |
H A D | function_docs.py | 3199 hyp2f1 = r""" variable
|
H A D | __init__.py | 317 hyp2f1 = mp.hyp2f1 variable
|
/dports/math/p5-Math-Cephes/Math-Cephes-0.5305/lib/Math/ |
H A D | Cephes.pm | 229 *hyp2f1 = *Math::Cephesc::hyp2f1;
|
/dports/astro/py-astropy/astropy-5.0/astropy/cosmology/tests/ |
H A D | test_flrw.py | 21 from astropy.cosmology.flrw import ellipkinc, hyp2f1, quad 43 hyp2f1()
|