Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/RobTillaart/Arduino
/ c_sqr
Method
c_sqr
libraries/Complex/complex.cpp:138–143 ·
view source on GitHub ↗
POWER FUNCTIONS
Source
from the content-addressed store, hash-verified
136
// POWER FUNCTIONS
137
//
138
Complex Complex::c_sqr() const
139
{
140
float r = re * re - im * im;
141
float i = 2 * re * im;
142
return Complex(r, i);
143
}
144
145
146
Complex Complex::c_sqrt() const
Callers
2
gonioHelper1
Method · 0.95
unittest
Function · 0.80
Calls
1
Complex
Class · 0.85
Tested by
1
unittest
Function · 0.64