scipy 1.8.0 Pypi GitHub Homepage
Other Docs
ParametersReturnsBackRef
ai_zeros(nt)

Computes the first :None:None:`nt` zeros, a, of the Airy function Ai(x); first :None:None:`nt` zeros, :None:None:`ap`, of the derivative of the Airy function Ai'(x); the corresponding values Ai(a'); and the corresponding values Ai'(a).

Parameters

nt : int

Number of zeros to compute

Returns

a : ndarray

First :None:None:`nt` zeros of Ai(x)

ap : ndarray

First :None:None:`nt` zeros of Ai'(x)

ai : ndarray

Values of Ai(x) evaluated at first :None:None:`nt` zeros of Ai'(x)

aip : ndarray

Values of Ai'(x) evaluated at first :None:None:`nt` zeros of Ai(x)

Compute :None:None:`nt` zeros and values of the Airy function Ai and its derivative.

Examples

>>> from scipy import special
... a, ap, ai, aip = special.ai_zeros(3)
... a array([-2.33810741, -4.08794944, -5.52055983])
>>> ap
array([-1.01879297, -3.24819758, -4.82009921])
>>> ai
array([ 0.53565666, -0.41901548,  0.38040647])
>>> aip
array([ 0.70121082, -0.80311137,  0.86520403])
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

scipy.special._basic.ai_zeros

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


GitHub : /scipy/special/_basic.py#1609
type: <class 'function'>
Commit: