C# Класс numl.Math.Functions.Function

A function.
Наследование: IFunction
Показать файл Открыть проект

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

Метод Описание
Compute ( Vector x ) : Vector

Computes the given x coordinate.

Compute ( double x ) : double

Computes the given x coordinate.

Derivative ( Vector x ) : Vector

Derivatives the given x coordinate.

Derivative ( double x ) : double

Derivatives the given x coordinate.

Minimize ( Vector x ) : double

Sums the given x coordinate.

Приватные методы

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

Exps.

pow ( double x, double a ) : double

Pows.

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

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

Computes the given x coordinate.
public Compute ( Vector x ) : Vector
x numl.Math.LinearAlgebra.Vector The Vector to process.
Результат numl.Math.LinearAlgebra.Vector

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

Computes the given x coordinate.
public abstract Compute ( double x ) : double
x double The Vector to process.
Результат double

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

Derivatives the given x coordinate.
public Derivative ( Vector x ) : Vector
x numl.Math.LinearAlgebra.Vector The Vector to process.
Результат numl.Math.LinearAlgebra.Vector

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

Derivatives the given x coordinate.
public abstract Derivative ( double x ) : double
x double The Vector to process.
Результат double

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

Sums the given x coordinate.
public Minimize ( Vector x ) : double
x numl.Math.LinearAlgebra.Vector The Vector to process.
Результат double