Macaulay2 Engine
Loading...
Searching...
No Matches

◆ operator-() [1/2]

complex complex::operator- ( ) const
inline

Definition at line 303 of file NAG.hpp.

304{
305 complex tmp;
306 tmp.real = -this->real;
307 tmp.imag = -this->imag;
308 return tmp;
309}
double imag
Definition NAG.hpp:224
complex()
Definition NAG.hpp:248
double real
Definition NAG.hpp:223

References complex(), imag, and real.