Special.Spherical Bessel J Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.7
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.7
Overload List
Spherical | Evaluates the spherical Bessel function of the first kind of real order and complex argument. |
Spherical | Evaluates the spherical Bessel function of the first kind of real order. |
Spherical | Evaluates the spherical Bessel function of the first kind of integer order and complex argument. |
Spherical | 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.
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.
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
DoubleThe 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.
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.
public static double SphericalBesselJ(
int n,
double x
)
Parameters
Return Value
DoubleThe value of the spherical Bessel function of the first kind of order n at x.