Computes the irregular Bessel function for integer orders.

Namespace:  Meta.Numerics.Functions
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static double BesselY(
	int n,
	double x
)
Public Shared Function BesselY ( _
	n As Integer, _
	x As Double _
) As Double
public:
static double BesselY(
	int n, 
	double x
)

Parameters

n
Int32
The order parameter.
x
Double
The argument.

Return Value

The value of Yn(x).

Remarks

The Bessel functions of integral order occur in solutions to the wave equations with cylindrical symmetry. The irregular Bessel functions diverge at the origin, and thus occur in situations where the region in which the wave equation is satisfied not not include the origin.

See Also