Strategy for converting complex numbers to real values.
| Enumerator |
|---|
| MAGNITUDE | |z| = sqrt(real² + imag²)
|
| REAL_PART | z.real()
|
| IMAG_PART | z.imag()
|
| SQUARED_MAGNITUDE | |z|² = real² + imag²
|
Definition at line 64 of file Utils.hpp.
64 : uint8_t {
69};
@ SQUARED_MAGNITUDE
|z|² = real² + imag²
@ MAGNITUDE
|z| = sqrt(real² + imag²)