I just tried to use SciPy's error function, and Astropy politely requested that I raise this issue here:
>>> from astropy import units
>>> from scipy.special import erf, erfc
>>> r1 = 5*u.m
>>> r2 = 6*u.m
>>> erf(r1/r2)
TypeError: Unknown ufunc erf. Please raise issue on https://github.com/astropy/astropy
>>> erfc(r1/r2)
TypeError: Unknown ufunc erfc. Please raise issue on https://github.com/astropy/astropy
>>> erf(r1.value/r2.value) # workaround
0.76140717068356445
In scipy.special, ufuncs that I would prioritize include:
Thanks!
I just tried to use SciPy's error function, and Astropy politely requested that I raise this issue here:
In scipy.special, ufuncs that I would prioritize include:
zetaandzetac- Riemann zeta functionsThanks!