Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
172
Complex 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
180
Complex Complex::c_logn(const Complex &c) const
Callers
1
unittest
Function · 0.80
Calls
1
c_exp
Method · 0.80
Tested by
1
unittest
Function · 0.64