Returns the argument of this complex number (Math.atan2(re,im))
()
| 208 | * Returns the argument of this complex number (Math.atan2(re,im)) |
| 209 | */ |
| 210 | public double arg() { |
| 211 | return Math.atan2(im, re); |
| 212 | } |
| 213 | |
| 214 | /** Convert text representation to a Complex. |
| 215 | * input format (real_double,imaginary_double) |