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

Method c_atanh

libraries/Complex/complex.cpp:351–356  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

349
350
351Complex Complex::c_atanh() const
352{
353 Complex c = (*this + one).c_log();
354 c = c - (-(*this - one)).c_log();
355 return c * 0.5;
356}
357
358
359//

Callers 1

c_acothMethod · 0.80

Calls 1

c_logMethod · 0.80

Tested by

no test coverage detected