3#ifndef pRC_CORE_COMPLEX_FUNCTIONS_RCP_H
4#define pRC_CORE_COMPLEX_FUNCTIONS_RCP_H
12 static inline constexpr auto rcp(
T const &b)
15 auto const real = b.real() * denominator;
16 auto const imag = -b.imag() * denominator;
Definition cholesky.hpp:10
static constexpr auto rcp(T const &b)
Definition rcp.hpp:12
Complex(T const &) -> Complex< T >
static constexpr decltype(auto) real(X &&a)
Definition real.hpp:12
static constexpr decltype(auto) imag(X &&a)
Definition imag.hpp:12
static constexpr auto norm(T const &a)
Definition norm.hpp:12