C# Class SoundLibrary.Mathematics.Function.Unary

単項関数。
Inheritance: Function
Afficher le fichier Open project: ufcpp/UfcppSample

Protected Properties

Свойство Type Description
func UnaryFunction
inner Function

Méthodes publiques

Méthode Description
Bind ( ) : Function
Clone ( ) : Function
Differentiate ( Variable x ) : Function
Equals ( object obj ) : bool
GetComplexPart ( Function &re, Function &im ) : void
GetHashCode ( ) : int
GetValue ( ) : ValueType
GetVariableList ( ) : System.Collections.ArrayList
Optimize ( ) : Function
ToString ( ) : string
Unary ( UnaryFunction func, Function inner ) : System

Méthodes protégées

Méthode Description
Differentiate ( ) : Function

this.func 自体の導関数を求める。

FunctionName ( ) : string
GetComplexPart ( Function reX, Function imX, Function &reY, Function &imY ) : void

関数 f(z) を複素関数とみなしたとき、その実部と虚部 Re[f](Re(z), Im(z)), Im[f](Re(z), Im(z) を求める。 例えば、Exp の場合、 reY = Exp(reX) * Cos(imX), imY = Exp(reX) * Sin(imX)

Method Details

Bind() public méthode

public Bind ( ) : Function
Résultat Function

Clone() public méthode

public Clone ( ) : Function
Résultat Function

Differentiate() protected méthode

this.func 自体の導関数を求める。
protected Differentiate ( ) : Function
Résultat Function

Differentiate() public méthode

public Differentiate ( Variable x ) : Function
x Variable
Résultat Function

Equals() public méthode

public Equals ( object obj ) : bool
obj object
Résultat bool

FunctionName() protected méthode

protected FunctionName ( ) : string
Résultat string

GetComplexPart() public méthode

public GetComplexPart ( Function &re, Function &im ) : void
re Function
im Function
Résultat void

GetComplexPart() protected méthode

関数 f(z) を複素関数とみなしたとき、その実部と虚部 Re[f](Re(z), Im(z)), Im[f](Re(z), Im(z) を求める。 例えば、Exp の場合、 reY = Exp(reX) * Cos(imX), imY = Exp(reX) * Sin(imX)
protected GetComplexPart ( Function reX, Function imX, Function &reY, Function &imY ) : void
reX Function パラメータの実部
imX Function パラメータの虚部
reY Function 関数値の実部
imY Function 関数値の虚部
Résultat void

GetHashCode() public méthode

public GetHashCode ( ) : int
Résultat int

GetValue() public méthode

public GetValue ( ) : ValueType
Résultat System.ValueType

GetVariableList() public méthode

public GetVariableList ( ) : System.Collections.ArrayList
Résultat System.Collections.ArrayList

Optimize() public méthode

public Optimize ( ) : Function
Résultat Function

ToString() public méthode

public ToString ( ) : string
Résultat string

Unary() public méthode

public Unary ( UnaryFunction func, Function inner ) : System
func UnaryFunction
inner Function
Résultat System

Property Details

func protected_oe property

関数本体。
protected UnaryFunction func
Résultat UnaryFunction

inner protected_oe property

内部関数。 this.GetValue(x) == func(inner.GetValue(x))
protected Function inner
Résultat Function