Use of `scipy.special._ufuncs.i0e`
Is there a reason that we access _ufuncs
? It has a leading underscore and is therefore private subject to change. As far as I see we can also just use scipy.special.i0e(x)
instead of scipy.special._ufuncs.i0e(x)
. Is there a reason why we are not doing just that?