Special.SphericalBesselJ Method

Definition

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

Overload List

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

SphericalBesselJ(Double, Complex<Double>)

Evaluates the spherical Bessel function of the first kind of real order and complex argument.
C#
public static Complex<double> SphericalBesselJ(
	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 first kind of order nu at z.

SphericalBesselJ(Double, Double)

Evaluates the spherical Bessel function of the first kind of real order.
C#
public static double SphericalBesselJ(
	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 first kind of order nu at x.

SphericalBesselJ(Int32, Complex<Double>)

Evaluates the spherical Bessel function of the first kind of integer order and complex argument.
C#
public static Complex<double> SphericalBesselJ(
	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 first kind of order n at z.

SphericalBesselJ(Int32, Double)

Evaluates the spherical Bessel function of the first kind of integer order.
C#
public static double SphericalBesselJ(
	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 first kind of order n at x.

See Also