Click or drag to resize

SpecialFunctionsAiry Method

The Airy and Bairy functions are the two solutions of the differential equation
C#
y''(x) = xy
.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static double Airy(
	double x,
	out double ai,
	out double dai,
	out double bi,
	out double dbi
)

Parameters

x  Double
A real number less than 103.892.
ai  Double
Airy function Ai(x).
dai  Double
The first derivative of Ai(x).
bi  Double
The Airy function Bi(x).
dbi  Double
The first derivative of Bi(x).

Return Value

Double
Both independent solutions, Ai(x) and Bi(x), and their first derivatives, of the differential equation y''(x) - xy = 0.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionThe argument x is restricted to x <= 103.892.
See Also