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

Method c_sin

libraries/Complex/complex.cpp:196–199  ·  view source on GitHub ↗

GONIO I - SIN COS TAN

Source from the content-addressed store, hash-verified

194// GONIO I - SIN COS TAN
195//
196Complex Complex::c_sin() const
197{
198 return Complex(sin(re) * cosh(im), cos(re) * sinh(im));
199}
200
201
202Complex Complex::c_cos() const

Callers 1

unittestFunction · 0.80

Calls 1

ComplexClass · 0.85

Tested by 1

unittestFunction · 0.64