Special.AiryAiPrimeScaled Method

Definition

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

Overload List

AiryAiPrimeScaled(Complex<Double>) Evaluates the derivative of the Airy function Ai(z) for complex argument scaled to be of the same order of magnitude over the entire domain.
AiryAiPrimeScaled(Double) Evaluates the derivative of the Airy function Ai(x) scaled to be of the same order of magnitude over the entire domain.

AiryAiPrimeScaled(Complex<Double>)

Evaluates the derivative of the Airy function Ai(z) for complex argument scaled to be of the same order of magnitude over the entire domain.
C#
public static Complex<double> AiryAiPrimeScaled(
	Complex<double> z
)

Parameters

z  Complex<Double>
A complex number.

Return Value

Complex<Double>
The value of the derivative of Ai(x) at z scaled by a factor Exp((2/3)z^(3/2)).

AiryAiPrimeScaled(Double)

Evaluates the derivative of the Airy function Ai(x) scaled to be of the same order of magnitude over the entire domain.
C#
public static double AiryAiPrimeScaled(
	double x
)

Parameters

x  Double
A real number.

Return Value

Double
The value of the derivative of Ai(x) at x scaled by a factor Exp((2/3)z^(3/2)) when x > 0.

See Also