4#ifndef TETL_COMPLEX_SIN_HPP
5#define TETL_COMPLEX_SIN_HPP
7#include <etl/_complex/complex.hpp>
8#include <etl/_complex/sinh.hpp>
16 auto const x = z.real();
17 auto const y = z.imag();
19 etl::sin(x) *
etl::cosh(y),
20 etl::cos(x) *
etl::sinh(y),
constexpr auto sin(complex< T > const &z) -> complex< T >
Definition sin.hpp:14
Definition adjacent_find.hpp:9
A complex number.
Definition complex.hpp:20