bundles / scipy latest / scipy / special / _basic / bi_zeros
function
scipy.special._basic:bi_zeros
source: /scipy/special/_basic.py :1957
Signature
def bi_zeros ( nt ) Summary
Compute nt zeros and values of the Airy function Bi and its derivative.
Extended Summary
Computes the first nt zeros, b, of the Airy function Bi(x); first nt zeros, b', of the derivative of the Airy function Bi'(x); the corresponding values Bi(b'); and the corresponding values Bi'(b).
Parameters
nt: intNumber of zeros to compute
Returns
b: ndarrayFirst
ntzeros of Bi(x)bp: ndarrayFirst
ntzeros of Bi'(x)bi: ndarrayValues of Bi(x) evaluated at first
ntzeros of Bi'(x)bip: ndarrayValues of Bi'(x) evaluated at first
ntzeros of Bi(x)
Examples
from scipy import special b, bp, bi, bip = special.bi_zeros(3)✓
b bp bi bip✗
Aliases
-
scipy.special.bi_zeros