C# Класс Accord.Statistics.Links.IdentityLinkFunction

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

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

Метод Описание
Clone ( ) : object

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

Derivative ( double x ) : double

First derivative of the Inverse function.

The first derivative of the identity link function is given by f'(x) = B.

Derivative2 ( double y ) : double

First derivative of the Inverse function expressed in terms of it's output.

The first derivative of the identity link function in terms of y = f(x) is given by f'(y) = B.

Function ( double x ) : double

The Identity link function.

The Identity link function is given by f(x) = (x - A) / B.

IdentityLinkFunction ( ) : System

Creates a new Identity link function.

IdentityLinkFunction ( double beta, double constant ) : System

Creates a new Identity link function.

Inverse ( double x ) : double

The mean function.

The inverse Identity link function is given by g(x) = B * x + A.

Log ( double x ) : double

The logarithm of the inverse of the link function.

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

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

Creates a new object that is a copy of the current instance.
public Clone ( ) : object
Результат object

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

First derivative of the Inverse function.
The first derivative of the identity link function is given by f'(x) = B.
public Derivative ( double x ) : double
x double The input value.
Результат double

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

First derivative of the Inverse function expressed in terms of it's output.
The first derivative of the identity link function in terms of y = f(x) is given by f'(y) = B.
public Derivative2 ( double y ) : double
y double The reverse transformed value.
Результат double

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

The Identity link function.
The Identity link function is given by f(x) = (x - A) / B.
public Function ( double x ) : double
x double An input value.
Результат double

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

Creates a new Identity link function.
public IdentityLinkFunction ( ) : System
Результат System

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

Creates a new Identity link function.
public IdentityLinkFunction ( double beta, double constant ) : System
beta double The variance value.
constant double The mean value.
Результат System

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

The mean function.
The inverse Identity link function is given by g(x) = B * x + A.
public Inverse ( double x ) : double
x double A transformed value.
Результат double

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

The logarithm of the inverse of the link function.
public Log ( double x ) : double
x double A transformed value.
Результат double