Computes the irregular spherical Bessel function of integer order.

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

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public static double SphericalBesselY(
	int n,
	double x
)
Public Shared Function SphericalBesselY ( _
	n As Integer, _
	x As Double _
) As Double
public:
static double SphericalBesselY(
	int n, 
	double x
)
static member SphericalBesselY : 
        n : int * 
        x : float -> float 

Parameters

n
Int32
The order parameter.
x
Double
The argument.

Return Value

The value of yn(x).

See Also