Special.AiryAi Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

AiryAi(Complex<Double>) Evaluates the Airy function Ai(z) for complex argument.
AiryAi(Double) Evaluates the Airy function Ai(x).

AiryAi(Complex<Double>)

Evaluates the Airy function Ai(z) for complex argument.
C#
public static Complex<double> AiryAi(
	Complex<double> z
)

Parameters

z  Complex<Double>
A complex number.

Return Value

Complex<Double>
The value of Ai(x) at z.

AiryAi(Double)

Evaluates the Airy function Ai(x).
C#
public static double AiryAi(
	double x
)

Parameters

x  Double
A real number.

Return Value

Double
The value of Ai(x) at x.

See Also