複素数型の抽象基底クラス
Inheritance: ICloneable
Esempio n. 1
0
 /// <summary>
 /// this を z で割った値を返す
 /// (thisの値は変化させない)
 /// </summary>
 public abstract Complex Div(Complex z);
Esempio n. 2
0
 /// <summary>
 /// this から z を引いた値を返す
 /// (thisの値は変化させない)
 /// </summary>
 public abstract Complex Sub(Complex z);
Esempio n. 3
0
 /// <summary>
 /// this に z を掛けた値を返す
 /// (thisの値は変化させない)
 /// </summary>
 public abstract Complex Mul(Complex z);
Esempio n. 4
0
 /// <summary>
 /// this に z を加えた値を返す
 /// (thisの値は変化させない)
 /// </summary>
 public abstract Complex Add(Complex z);