Special.AiryBi Method

Definition

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

Overload List

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

AiryBi(Complex<Double>)

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

Parameters

z  Complex<Double>
A complex number.

Return Value

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

AiryBi(Double)

Evaluates the Airy function Bi(x).
C#
public static double AiryBi(
	double x
)

Parameters

x  Double
A real number.

Return Value

Double
The value of Bi(x) at x.

See Also