public static Complex PolarValueOf(JepDouble r, JepDouble theta) { double num = r.Value; double d = theta.Value; return(new Complex(num * Math.Cos(d), num * Math.Sin(d))); }
public Complex(JepDouble re_in) { this._re = re_in.DoubleValue; this._im = 0.0; }