Returns a Complex from real and imaginary parts.
(double re, double im)
| 389 | **/ |
| 390 | |
| 391 | public static Complex cart (double re, double im) { |
| 392 | return new Complex(re, im); |
| 393 | }//end cart(double,double) |
| 394 | |
| 395 | /** |
| 396 | * Returns the value of this complex number raised to the power of |