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

◆ operator-() [2/2]

complex complex::operator- ( complex c)
inline

Definition at line 295 of file NAG.hpp.

296{
297 complex tmp;
298 tmp.real = this->real - c.real;
299 tmp.imag = this->imag - c.imag;
300 return tmp;
301}
double imag
Definition NAG.hpp:224
complex()
Definition NAG.hpp:248
double real
Definition NAG.hpp:223

References complex(), imag, and real.