/// <summary> /// this を z で割った値を返す /// (thisの値は変化させない) /// </summary> public abstract Complex Div(Complex z);
/// <summary> /// this から z を引いた値を返す /// (thisの値は変化させない) /// </summary> public abstract Complex Sub(Complex z);
/// <summary> /// this に z を掛けた値を返す /// (thisの値は変化させない) /// </summary> public abstract Complex Mul(Complex z);
/// <summary> /// this に z を加えた値を返す /// (thisの値は変化させない) /// </summary> public abstract Complex Add(Complex z);