Property | Type | Description | |
---|---|---|---|
func | UnaryFunction | ||
inner | Function |
Method | Description | |
---|---|---|
Bind ( ) : Function | ||
Clone ( ) : Function | ||
Differentiate ( |
||
Equals ( object obj ) : bool | ||
GetComplexPart ( Function &re, Function &im ) : void | ||
GetHashCode ( ) : int | ||
GetValue ( ) : |
||
GetVariableList ( ) : System.Collections.ArrayList | ||
Optimize ( ) : Function | ||
ToString ( ) : string | ||
Unary ( UnaryFunction func, Function inner ) : System |
Method | 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)
|
public Differentiate ( |
||
x | ||
return | Function |
public GetComplexPart ( Function &re, Function &im ) : void | ||
re | Function | |
im | Function | |
return | void |
protected GetComplexPart ( Function reX, Function imX, Function &reY, Function &imY ) : void | ||
reX | Function | パラメータの実部 |
imX | Function | パラメータの虚部 |
reY | Function | 関数値の実部 |
imY | Function | 関数値の虚部 |
return | void |
public GetVariableList ( ) : System.Collections.ArrayList | ||
return | System.Collections.ArrayList |
public Unary ( UnaryFunction func, Function inner ) : System | ||
func | UnaryFunction | |
inner | Function | |
return | System |