bundles / scipy 1.17.1 / scipy / special / _basic / ai_zeros
function
scipy.special._basic:ai_zeros
source: /scipy/special/_basic.py :1906
Signature
def ai_zeros ( nt ) Summary
Compute nt zeros and values of the Airy function Ai and its derivative.
Extended Summary
Computes the first nt zeros, a, of the Airy function Ai(x); first nt zeros, ap, of the derivative of the Airy function Ai'(x); the corresponding values Ai(a'); and the corresponding values Ai'(a).
Parameters
nt: intNumber of zeros to compute
Returns
a: ndarrayFirst
ntzeros of Ai(x)ap: ndarrayFirst
ntzeros of Ai'(x)ai: ndarrayValues of Ai(x) evaluated at first
ntzeros of Ai'(x)aip: ndarrayValues of Ai'(x) evaluated at first
ntzeros of Ai(x)
Examples
from scipy import special a, ap, ai, aip = special.ai_zeros(3)✓
a ap ai aip✗
Aliases
-
scipy.special.ai_zeros