C# Класс YAMP.Numerics.Bessel

This class contains bessel functions.
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

j0() публичный статический Метод

Returns the Bessel function of order 0 of the specified number.
public static j0 ( double x ) : double
x double x
Результат double

j1() публичный статический Метод

Returns the Bessel function of order 1 of the specified number.
public static j1 ( double x ) : double
x double x
Результат double

jn() публичный статический Метод

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
Результат double

y0() публичный статический Метод

Returns the Bessel function of the second kind, of order 0 of the specified number.
public static y0 ( double x ) : double
x double x
Результат double

y1() публичный статический Метод

Returns the Bessel function of the second kind, of order 1 of the specified number.
public static y1 ( double x ) : double
x double x
Результат double

yn() публичный статический Метод

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
Результат double