C# 클래스 numl.Math.Functions.Function

A function.
상속: IFunction
파일 보기 프로젝트 열기: sethjuarez/numl

공개 메소드들

메소드 설명
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