C# Class SoundLibrary.Mathematics.Expression.Rational

有理式。
显示文件 Open project: ufcpp/UfcppSample Class Usage Examples

Public Methods

Method Description
Elliptic ( int n, double l ) : Rational

チェビシェフ有理式(elliptic rational)を計算する。

Rational ( ) : System

0次数で初期化。

Rational ( Polynomial num, Polynomial denom ) : System

分子/分母多項式を指定して初期化。

Rational ( int nOrder ) : System

分子多項式の次数を指定して初期化。

Rational ( int nOrder, int dOrder ) : System

次数を指定して初期化。

Value ( DomainType x ) : ValueType

f(x) を計算。

operator ( ) : Rational

単項+。

Method Details

Elliptic() public static method

チェビシェフ有理式(elliptic rational)を計算する。
public static Elliptic ( int n, double l ) : Rational
n int 次数
l double x > 1 における極小値
return Rational

Rational() public method

0次数で初期化。
public Rational ( ) : System
return System

Rational() public method

分子/分母多項式を指定して初期化。
public Rational ( Polynomial num, Polynomial denom ) : System
num Polynomial 分子多項式
denom Polynomial 分母多項式
return System

Rational() public method

分子多項式の次数を指定して初期化。
public Rational ( int nOrder ) : System
nOrder int 分子多項式の次数
return System

Rational() public method

次数を指定して初期化。
public Rational ( int nOrder, int dOrder ) : System
nOrder int 分子多項式の次数
dOrder int 分母多項式の次数
return System

Value() public method

f(x) を計算。
public Value ( DomainType x ) : ValueType
x DomainType x
return System.ValueType

operator() public static method

単項+。
public static operator ( ) : Rational
return Rational