C# Class Accord.Neuro.ThresholdFunction

Inheritance: IActivationFunction, ICloneable
Afficher le fichier Open project: accord-net/framework

Méthodes publiques

Méthode Description
Clone ( ) : object

Creates a new object that is a copy of the current instance.

Derivative ( double x ) : double

Calculates function derivative (not supported).

The method is not supported, because it is not possible to calculate derivative of the function.

Derivative2 ( double y ) : double

Calculates function derivative (not supported).

The method is not supported, because it is not possible to calculate derivative of the function.

Function ( double x ) : double

Calculates function value.

The method calculates function value at point x.

ThresholdFunction ( ) : System

Initializes a new instance of the ThresholdFunction class.

Method Details

Clone() public méthode

Creates a new object that is a copy of the current instance.
public Clone ( ) : object
Résultat object

Derivative() public méthode

Calculates function derivative (not supported).

The method is not supported, because it is not possible to calculate derivative of the function.

public Derivative ( double x ) : double
x double Input value.
Résultat double

Derivative2() public méthode

Calculates function derivative (not supported).

The method is not supported, because it is not possible to calculate derivative of the function.

public Derivative2 ( double y ) : double
y double Input value.
Résultat double

Function() public méthode

Calculates function value.
The method calculates function value at point x.
public Function ( double x ) : double
x double Function input value.
Résultat double

ThresholdFunction() public méthode

Initializes a new instance of the ThresholdFunction class.
public ThresholdFunction ( ) : System
Résultat System