MCPcopy Create free account
hub / github.com/RobTillaart/Arduino / conjugate

Method conjugate

libraries/Complex/complex.h:39–39  ·  view source on GitHub ↗

conjugate is the number mirrored in x-axis

Source from the content-addressed store, hash-verified

37 float modulus() const { return hypot(re, im); };
38 // conjugate is the number mirrored in x-axis
39 Complex conjugate() const { return Complex(re, -im); };
40 Complex reciprocal() const;
41
42

Callers 1

unittestFunction · 0.80

Calls 1

ComplexClass · 0.85

Tested by 1

unittestFunction · 0.64