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