Method
I
Returns the complex number representing sqrt(-1) @return the complex number i
()
Source from the content-addressed store, hash-verified
| 18 | * @return the complex number <i>i</i> |
| 19 | */ |
| 20 | public static Complex I() |
| 21 | { |
| 22 | return new Complex(0.0, 1.0); |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * Creates a new Complex number |