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

Method c_pow

libraries/Complex/complex.cpp:172–177  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

170
171
172Complex Complex::c_pow(const Complex &c) const
173{
174 Complex t = c_log();
175 t = t * c;
176 return t.c_exp();
177}
178
179
180Complex Complex::c_logn(const Complex &c) const

Callers 1

unittestFunction · 0.80

Calls 1

c_expMethod · 0.80

Tested by 1

unittestFunction · 0.64