C# Class YAMP.Numerics.Bessel

This class contains bessel functions.
ファイルを表示 Open project: FlorianRappl/YAMP

Public Methods

Method Description
j0 ( double x ) : double

Returns the Bessel function of order 0 of the specified number.

j1 ( double x ) : double

Returns the Bessel function of order 1 of the specified number.

jn ( int n, double x ) : double

Returns the Bessel function of order n of the specified number.

y0 ( double x ) : double

Returns the Bessel function of the second kind, of order 0 of the specified number.

y1 ( double x ) : double

Returns the Bessel function of the second kind, of order 1 of the specified number.

yn ( int n, double x ) : double

Returns the Bessel function of the second kind, of order n of the specified number.

Method Details

j0() public static method

Returns the Bessel function of order 0 of the specified number.
public static j0 ( double x ) : double
x double x
return double

j1() public static method

Returns the Bessel function of order 1 of the specified number.
public static j1 ( double x ) : double
x double x
return double

jn() public static method

Returns the Bessel function of order n of the specified number.
public static jn ( int n, double x ) : double
n int Order
x double x
return double

y0() public static method

Returns the Bessel function of the second kind, of order 0 of the specified number.
public static y0 ( double x ) : double
x double x
return double

y1() public static method

Returns the Bessel function of the second kind, of order 1 of the specified number.
public static y1 ( double x ) : double
x double x
return double

yn() public static method

Returns the Bessel function of the second kind, of order n of the specified number.
public static yn ( int n, double x ) : double
n int Order
x double x
return double