maxframe.tensor.special.airye#

maxframe.tensor.special.airye(z, out=None)[source]#

Exponentially scaled Airy functions and their derivatives.

Scaling:

eAi  = Ai  * exp(2.0/3.0*z*sqrt(z))
eAip = Aip * exp(2.0/3.0*z*sqrt(z))
eBi  = Bi  * exp(-abs(2.0/3.0*(z*sqrt(z)).real))
eBip = Bip * exp(-abs(2.0/3.0*(z*sqrt(z)).real))
Parameters:
  • z (array_like) – Real or complex argument.

  • out (tuple of ndarray, optional) – Optional output arrays for the function values

Returns:

eAi, eAip, eBi, eBip – Exponentially scaled Airy functions eAi and eBi, and their derivatives eAip and eBip

Return type:

4-tuple of scalar or ndarray

See also

airy

Notes

Wrapper for the AMOS [1] routines zairy and zbiry.

References