Special.SphericalBesselY Method

Definition

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

Overload List

SphericalBesselY(Double, Complex<Double>) Evaluates the spherical Bessel function of the second kind of real order and complex argument.
SphericalBesselY(Double, Double) Evaluates the spherical Bessel function of the second kind of real order.
SphericalBesselY(Int32, Complex<Double>) Evaluates the spherical Bessel function of the second kind of integer order and complex argument.
SphericalBesselY(Int32, Double) Evaluates the spherical Bessel function of the second kind of integer order.

SphericalBesselY(Double, Complex<Double>)

Evaluates the spherical Bessel function of the second kind of real order and complex argument.
C#
public static Complex<double> SphericalBesselY(
	double nu,
	Complex<double> z
)

Parameters

nu  Double
A real number that specifies the order of the Bessel function.
z  Complex<Double>
The value at which to evaluate the function.

Return Value

Complex<Double>
The value of the Bessel function of the second kind of order nu at z.

SphericalBesselY(Double, Double)

Evaluates the spherical Bessel function of the second kind of real order.
C#
public static double SphericalBesselY(
	double nu,
	double x
)

Parameters

nu  Double
A real number 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 spherical Bessel function of the second kind of order nu at x.

SphericalBesselY(Int32, Complex<Double>)

Evaluates the spherical Bessel function of the second kind of integer order and complex argument.
C#
public static Complex<double> SphericalBesselY(
	int n,
	Complex<double> z
)

Parameters

n  Int32
An integer that specifies the order.
z  Complex<Double>
The value at which to evaluate the function.

Return Value

Complex<Double>
The value of the spherical Bessel function of the second kind of order n at z.

SphericalBesselY(Int32, Double)

Evaluates the spherical Bessel function of the second kind of integer order.
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 value of the spherical Bessel function of the second kind of order n at x.

See Also