Special.SphericalBesselY Method

Definition

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

Overload List

SphericalBesselY(Double, Double) Evaluates the spherical Bessel function of the first kind of integer order.
SphericalBesselY(Int32, Double) Evaluates the spherical Bessel function of the second kind.

SphericalBesselY(Double, Double)

Evaluates the spherical Bessel function of the first kind of integer order.
C#
public static double SphericalBesselY(
	double n,
	double x
)

Parameters

n  Double
An integer that specifies the order of the Bessel function.
x  Double
The value at which to evaluate the function.

Return Value

Double
The value of the Bessel function of the first kind of order n at x.

SphericalBesselY(Int32, Double)

Evaluates the spherical Bessel function of the second kind.
C#
public static double SphericalBesselY(
	int n,
	double x
)

Parameters

n  Int32
An integer that specifies the order.
x  Double
The value at which to evaluate the function.

Return Value

Double
The spherical Bessel function of the second kind.

See Also