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

◆ operator+=()

complex & complex::operator+= ( const complex c)
inline

Definition at line 288 of file NAG.hpp.

289{
290 this->real += c.real;
291 this->imag += c.imag;
292 return *this;
293}
double imag
Definition NAG.hpp:224
double real
Definition NAG.hpp:223

References complex(), imag, and real.