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

Method c_exp

libraries/Complex/complex.cpp:156–160  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

154
155
156Complex Complex::c_exp() const
157{
158 float e = exp(re);
159 return Complex(e * cos(im), e * sin(im));
160}
161
162
163Complex Complex::c_log() const

Callers 2

c_powMethod · 0.80
unittestFunction · 0.80

Calls 1

ComplexClass · 0.85

Tested by 1

unittestFunction · 0.64