3#ifndef TETL_CMATH_BETA_HPP
4#define TETL_CMATH_BETA_HPP
6#include <etl/_3rd_party/gcem/gcem.hpp>
15[[nodiscard]]
constexpr auto beta(
double x,
double y)
noexcept ->
double {
return etl::detail::gcem::beta(x, y); }
16[[nodiscard]]
constexpr auto betaf(
float x,
float y)
noexcept ->
float {
return etl::detail::gcem::beta(x, y); }
17[[nodiscard]]
constexpr auto betal(
long double x,
long double y)
noexcept ->
long double
19 return etl::detail::gcem::beta(x, y);
constexpr auto betaf(float x, float y) noexcept -> float
Computes the beta function of x and y.
Definition beta.hpp:16
constexpr auto betal(long double x, long double y) noexcept -> long double
Computes the beta function of x and y.
Definition beta.hpp:17
constexpr auto beta(double x, double y) noexcept -> double
Computes the beta function of x and y.
Definition beta.hpp:15
Definition adjacent_find.hpp:8