Generation

code to explanationWed, 14 Dec 2022

Complexfx& operator-=(const Complexfx& rhs) { this->re -= rhs.re; this->im -= rhs.im; return *this; }

operator-= from Complexfx.cpp subtracts the argument from the existing value and returns it.

Want to kickstart your project?Use the new AI Studio to create your code