bundles / scipy 1.17.1 / scipy / special / _basic / erf_zeros
function
scipy.special._basic:erf_zeros
source: /scipy/special/_basic.py :1390
Signature
def erf_zeros ( nt ) Summary
Compute the first nt zero in the first quadrant, ordered by absolute value.
Extended Summary
Zeros in the other quadrants can be obtained by using the symmetries erf(-z) = erf(z) and erf(conj(z)) = conj(erf(z)).
Parameters
nt: intThe number of zeros to compute
Returns
The locations of the zeros of erf: ndarray (complex)Complex values at which zeros of erf(z)
Examples
from scipy import special
✓special.erf_zeros(1)
✗special.erf(special.erf_zeros(1))
✗Aliases
-
scipy.special.erf_zeros