Beispiel #1
0
        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)));
        }
Beispiel #2
0
 public Complex(JepDouble re_in)
 {
     this._re = re_in.DoubleValue;
     this._im = 0.0;
 }