4#ifndef TETL_COMPLEX_COSH_HPP
5#define TETL_COMPLEX_COSH_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();
21 return {cosh(x) * cos(y), sinh(x) * sin(y)};
constexpr auto cosh(complex< T > const &z) -> complex< T >
Definition cosh.hpp:17
Definition adjacent_find.hpp:9
A complex number.
Definition complex.hpp:20