C# Класс Encog.MathUtil.RBF.GaussianFunction

Наследование: BasicRBF
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Calculate ( double x ) : double

Calculate the result from the function.

GaussianFunction ( ) : System

Default constructor for persistance.

GaussianFunction ( double peak, double center, double width ) : System

Construct a multi-dimension Gaussian function with the specified peak, centers and widths.

GaussianFunction ( int dimensions ) : System

Create centered at zero, width 0, and peak 0.

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

Calculate() публичный Метод

Calculate the result from the function.
public Calculate ( double x ) : double
x double The parameters for the function, one for each dimension.
Результат double

GaussianFunction() публичный Метод

Default constructor for persistance.
public GaussianFunction ( ) : System
Результат System

GaussianFunction() публичный Метод

Construct a multi-dimension Gaussian function with the specified peak, centers and widths.
public GaussianFunction ( double peak, double center, double width ) : System
peak double The peak for all dimensions.
center double The centers for each dimension.
width double The widths for each dimension.
Результат System

GaussianFunction() публичный Метод

Create centered at zero, width 0, and peak 0.
public GaussianFunction ( int dimensions ) : System
dimensions int The number of dimensions.
Результат System