* Creates a new complex number from real and imaginary parts given * by doubles. * * @return the new complex number **/
| 539 | * @return the new complex number |
| 540 | **/ |
| 541 | number complexNumber(const double r, const double i) |
| 542 | { |
| 543 | gmp_complex* n= new gmp_complex(r, i); |
| 544 | return (number)n; |
| 545 | } |
| 546 | |
| 547 | /** |
| 548 | * Returns one over the exponent-th power of ten. |
no outgoing calls
no test coverage detected