Namensräume
Varianten
Aktionen

Standardbibliothek-Header <cmath>

Von cppreference.com
< cpp‎ | header
 
 
Header der Standardbibliothek
Algorithmen
<algorithm>
<numeric>
Strings
<cctype>
<cstring>
<cuchar> (C++11)
<cwchar>
<cwctype>
<string_view> (C++17)
<string>
Textverarbeitung
<clocale>
<codecvt> (C++11/17/26*)
<locale>
<regex> (C++11)
<text_encoding> (C++26)   
Numerik
<cfenv> (C++11)
<cmath>
<complex>
<linalg> (C++26)
<numbers> (C++20)
<random> (C++11)
<simd> (C++26)
<valarray>
Zeit
<chrono> (C++11)
<ctime>
C Kompatibilität
<ccomplex> (C++11/17/20*)
<ciso646> (bis C++20)
<cstdalign> (C++11/17/20*)
<cstdbool> (C++11/17/20*)
<ctgmath> (C++11/17/20*)
 

Dieser Header war ursprünglich Teil der C-Standardbibliothek als <math.h>.

Dieser Header ist Teil der numerischen Bibliothek.

Inhalt

Typen

float_t
(C++11)
effizientester Gleitkommatyp, der mindestens so breit ist wie float
(typedef) [bearbeiten]
double_t
(C++11)
effizientester Gleitkommatyp, der mindestens so breit ist wie double
(typedef) [bearbeiten]

Makros

gibt den Überlaufwert für float, double bzw. long double an
(Makrokonstante) [bearbeiten]
(C++11)
evaluiert zu positiver Unendlichkeit oder dem Wert, der garantiert einen float überläuft
(Makrokonstante) [bearbeiten]
(C++11)
evaluiert zu einem leisen NaN vom Typ float
(Makrokonstante) [bearbeiten]
definiert den von den allgemeinen mathematischen Funktionen verwendeten Fehlerbehandlungsmechanismus
(Makrokonstante) [bearbeiten]
Klassifizierung
(C++11)(C++11)(C++11)(C++11)(C++11)
zeigt eine Gleitkomma-Kategorie an
(makro-Konstante) [bearbeiten]

Funktionen

Grundlegende Operationen
Absolutwert eines Gleitkommawerts (|x|)
(Funktion) [bearbeiten]
(C++11)(C++11)
Rest der Gleitkommadivisionsoperation
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
Vorzeichenbehafteter Rest der Divisionsoperation
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
vorzeichenbehafteter Rest sowie die letzten drei Bits der Divisionsoperation
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
fused multiply-add-Operation
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
größerer von zwei Gleitkommawerten
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
kleinerer von zwei Gleitkommawerten
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
positive Differenz zweier Gleitkommawerte (max(0, x-y))
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
Not-a-Number (NaN)
(Funktion) [bearbeiten]
Lineare Interpolation
(C++20)
Lineare Interpolationsfunktion
(Funktion) [bearbeiten]
Exponentialfunktionen
(C++11)(C++11)
gibt e hoch der gegebenen Potenz zurück (ex)
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
gibt 2 hoch der gegebenen Potenz zurück (2x)
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
gibt e hoch der gegebenen Potenz minus 1 zurück (ex-1)
(Funktion) [bearbeiten]
(C++11)(C++11)
berechnet den natürlichen (Basis e) Logarithmus (ln(x))
(Funktion) [bearbeiten]
(C++11)(C++11)
berechnet den dekadischen (Basis 10) Logarithmus (log10(x))
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
Basis 2 Logarithmus der gegebenen Zahl (log2(x))
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
natürlicher Logarithmus (Basis e) von 1 plus der gegebenen Zahl (ln(1+x))
(Funktion) [bearbeiten]
Potenzfunktionen
(C++11)(C++11)
erhöht eine Zahl zur gegebenen Potenz (xy)
(Funktion) [bearbeiten]
(C++11)(C++11)
berechnet die Quadratwurzel (x)
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
berechnet die Kubikwurzel (3x)
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
berechnet die Hypotenuse x2
+y2
und x2
+y2
+z2
(seit C++17)

(Funktion) [bearbeiten]
Trigonometrische Funktionen
(C++11)(C++11)
berechnet Sinus (sin(x))
(Funktion) [bearbeiten]
(C++11)(C++11)
berechnet Kosinus (cos(x))
(Funktion) [bearbeiten]
(C++11)(C++11)
berechnet Tangens (tan(x))
(Funktion) [bearbeiten]
(C++11)(C++11)
berechnet Arkussinus (arcsin(x))
(Funktion) [bearbeiten]
(C++11)(C++11)
berechnet Arkuskosinus (arccos(x))
(Funktion) [bearbeiten]
(C++11)(C++11)
berechnet Arkustangens (arctan(x))
(Funktion) [bearbeiten]
(C++11)(C++11)
Arkustangens, verwendet Vorzeichen zur Bestimmung der Quadranten
(Funktion) [bearbeiten]
Hyperbolische Funktionen
(C++11)(C++11)
berechnet den hyperbolischen Sinus (sinh(x))
(Funktion) [bearbeiten]
(C++11)(C++11)
berechnet den hyperbolischen Kosinus (cosh(x))
(Funktion) [bearbeiten]
(C++11)(C++11)
berechnet den hyperbolischen Tangens (tanh(x))
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
berechnet den inversen hyperbolischen Sinus (arsinh(x))
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
berechnet den inversen hyperbolischen Kosinus (arcosh(x))
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
berechnet den inversen hyperbolischen Tangens (artanh(x))
(Funktion) [bearbeiten]
Fehler- und Gammafunktionen
(C++11)(C++11)(C++11)
Fehlerfunktion
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
komplementäre Fehlerfunktion
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
Gammafunktion
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
natürlicher Logarithmus der Gammafunktion
(Funktion) [bearbeiten]
Nächste ganze Gleitkommaoperationen
(C++11)(C++11)
nächste ganze Zahl, die nicht kleiner ist als der gegebene Wert
(Funktion) [bearbeiten]
(C++11)(C++11)
nächste ganze Zahl, die nicht größer ist als der gegebene Wert
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
nächste ganze Zahl, die nicht größer im Betrag ist als der gegebene Wert
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)(C++11)(C++11)(C++11)(C++11)(C++11)(C++11)
nächste ganze Zahl, Rundung weg von Null bei Halbwertigkeiten
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
nächste ganze Zahl unter Verwendung des aktuellen Rundungsmodus
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)(C++11)(C++11)(C++11)(C++11)(C++11)(C++11)
nächste ganze Zahl unter Verwendung des aktuellen Rundungsmodus mit
Ausnahme, wenn das Ergebnis abweicht
(Funktion) [bearbeiten]
Gleitkomma-Manipulationsfunktionen
(C++11)(C++11)
zerlegt eine Zahl in Signifikand und Basis-2-Exponent
(Funktion) [bearbeiten]
(C++11)(C++11)
multipliziert eine Zahl mit 2 hoch einer ganzzahligen Potenz
(Funktion) [bearbeiten]
(C++11)(C++11)
zerlegt eine Zahl in Ganzzahl- und Bruchteilsteile
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)(C++11)(C++11)(C++11)
multipliziert eine Zahl mit FLT_RADIX hoch einer Potenz
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
extrahiert den Exponenten der Zahl
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
extrahiert den Exponenten der Zahl
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)(C++11)(C++11)(C++11)
nächster darstellbarer Gleitkommawert in Richtung des gegebenen Werts
(Funktion) [bearbeiten]
(C++11)(C++11)(C++11)
kopiert das Vorzeichen eines Gleitkommawerts
(Funktion) [bearbeiten]
Klassifizierung und Vergleich
klassifiziert den gegebenen Gleitkommawert
(Funktion) [bearbeiten]
(C++11)
prüft, ob die gegebene Zahl endlich ist
(Funktion) [bearbeiten]
(C++11)
prüft, ob die gegebene Zahl unendlich ist
(Funktion) [bearbeiten]
(C++11)
prüft, ob die gegebene Zahl NaN ist
(Funktion) [bearbeiten]
(C++11)
prüft, ob die gegebene Zahl normal ist
(Funktion) [bearbeiten]
(C++11)
prüft, ob die gegebene Zahl negativ ist
(Funktion) [bearbeiten]
(C++11)
prüft, ob das erste Gleitkommaargument größer ist als das zweite
(Funktion) [bearbeiten]
prüft, ob das erste Gleitkommaargument größer oder gleich dem zweiten ist
(Funktion) [bearbeiten]
(C++11)
prüft, ob das erste Gleitkommaargument kleiner ist als das zweite
(Funktion) [bearbeiten]
prüft, ob das erste Gleitkommaargument kleiner oder gleich dem zweiten ist
(Funktion) [bearbeiten]
prüft, ob das erste Gleitkommaargument kleiner oder größer als das zweite ist
(Funktion) [bearbeiten]
prüft, ob zwei Gleitkommawerte ungeordnet sind
(Funktion) [bearbeiten]
Mathematische Spezialfunktionen
assoziierte Laguerre-Polynome
(Funktion) [bearbeiten]
assoziierte Legendre-Polynome
(Funktion) [bearbeiten]
(C++17)(C++17)(C++17)
Betafunktion
(Funktion) [bearbeiten]
(vollständiges) elliptisches Integral erster Art
(Funktion) [bearbeiten]
(vollständiges) elliptisches Integral zweiter Art
(Funktion) [bearbeiten]
(vollständiges) elliptisches Integral dritter Art
(Funktion) [bearbeiten]
reguläre modifizierte zylindrische Besselfunktionen
(Funktion) [bearbeiten]
zylindrische Besselfunktionen (erster Art)
(Funktion) [bearbeiten]
irreguläre modifizierte zylindrische Besselfunktionen
(Funktion) [bearbeiten]
zylindrische Neumann-Funktionen
(Funktion) [bearbeiten]
(C++17)(C++17)(C++17)
(unvollständiges) elliptisches Integral erster Art
(Funktion) [bearbeiten]
(C++17)(C++17)(C++17)
(unvollständiges) elliptisches Integral zweiter Art
(Funktion) [bearbeiten]
(C++17)(C++17)(C++17)
(unvollständiges) elliptisches Integral dritter Art
(Funktion) [bearbeiten]
(C++17)(C++17)(C++17)
Exponentialintegral
(Funktion) [bearbeiten]
(C++17)(C++17)(C++17)
Hermite-Polynome
(Funktion) [bearbeiten]
(C++17)(C++17)(C++17)
Legendre-Polynome
(Funktion) [bearbeiten]
(C++17)(C++17)(C++17)
Laguerre-Polynome
(Funktion) [bearbeiten]
Riemannsche Zetafunktion
(Funktion) [bearbeiten]
sphärische Besselfunktionen (erster Art)
(Funktion) [bearbeiten]
assoziierte sphärische Legendre-Funktionen
(Funktion) [bearbeiten]
sphärische Neumann-Funktionen
(Funktion) [bearbeiten]

[bearbeiten] Synopsis

Für jede Funktion mit mindestens einem Parameter vom Typ /* floating-point-type */ wird eine Überladung für jeden cv-unqualifizierten Gleitkommatyp bereitgestellt, bei der alle Verwendungen von /* floating-point-type */ in der Funktionssignatur durch diesen Gleitkommatyp ersetzt werden.

Für jede Funktion mit mindestens einem Parameter vom Typ /* floating-point-type */ außer std::abs werden zusätzliche Überladungen bereitgestellt, um sicherzustellen, dass, wenn jedes Argument, das einem Parameter vom Typ /* floating-point-type */ entspricht, einen arithmetischen Typ hat, jedes solche Argument effektiv in den Gleitkommatyp mit dem höchsten Gleitkomma-Konversionsrang und dem höchsten Gleitkomma-Konversions-Subrang unter den Typen aller solchen Argumente umgewandelt wird, wobei Argumente vom Ganzzahltyp denselben Gleitkomma-Konversionsrang wie double haben. Wenn kein solcher Gleitkommatyp mit dem höchsten Rang und Subrang existiert, führt die Überladungsauflösung nicht zu einem nutzbaren Kandidaten aus den bereitgestellten Überladungen.

namespace std {
  using float_t = /* see description */;
  using double_t = /* see description */;
}
 
#define HUGE_VAL /* see description */
#define HUGE_VALF /* see description */
#define HUGE_VALL /* see description */
#define INFINITY /* see description */
#define NAN /* see description */
#define FP_INFINITE /* see description */
#define FP_NAN /* see description */
#define FP_NORMAL /* see description */
#define FP_SUBNORMAL /* see description */
#define FP_ZERO /* see description */
#define FP_FAST_FMA /* see description */
#define FP_FAST_FMAF /* see description */
#define FP_FAST_FMAL /* see description */
#define FP_ILOGB0 /* see description */
#define FP_ILOGBNAN /* see description */
#define MATH_ERRNO /* see description */
#define MATH_ERREXCEPT /* see description */
 
#define math_errhandling /* see description */
 
namespace std {
  /* floating-point-type */ acos(/* floating-point-type */ x);
  float acosf(float x);
  long double acosl(long double x);
 
  /* floating-point-type */ asin(/* floating-point-type */ x);
  float asinf(float x);
  long double asinl(long double x);
 
  /* floating-point-type */ atan(/* floating-point-type */ x);
  float atanf(float x);
  long double atanl(long double x);
 
  /* floating-point-type */ atan2(/* floating-point-type */ y,
                                  /* floating-point-type */ x);
  float atan2f(float y, float x);
  long double atan2l(long double y, long double x);
 
  /* floating-point-type */ cos(/* floating-point-type */e x);
  float cosf(float x);
  long double cosl(long double x);
 
  /* floating-point-type */ sin(/* floating-point-type */ x);
  float sinf(float x);
  long double sinl(long double x);
 
  /* floating-point-type */ tan(/* floating-point-type */ x);
  float tanf(float x);
  long double tanl(long double x);
 
  /* floating-point-type */ acosh(/* floating-point-type */ x);
  float acoshf(float x);
  long double acoshl(long double x);
 
  /* floating-point-type */ asinh(/* floating-point-type */ x);
  float asinhf(float x);
  long double asinhl(long double x);
 
  /* floating-point-type */ atanh(/* floating-point-type */ x);
  float atanhf(float x);
  long double atanhl(long double x);
 
  /* floating-point-type */ cosh(/* floating-point-type */ x);
  float coshf(float x);
  long double coshl(long double x);
 
  /* floating-point-type */ sinh(/* floating-point-type */ x);
  float sinhf(float x);
  long double sinhl(long double x);
 
  /* floating-point-type */ tanh(/* floating-point-type */ x);
  float tanhf(float x);
  long double tanhl(long double x);
 
  /* floating-point-type */ exp(/* floating-point-type */ x);
  float expf(float x);
  long double expl(long double x);
 
  /* floating-point-type */ exp2(/* floating-point-type */ x);
  float exp2f(float x);
  long double exp2l(long double x);
 
  /* floating-point-type */ expm1(/* floating-point-type */ x);
  float expm1f(float x);
  long double expm1l(long double x);
 
  constexpr /* floating-point-type */ frexp(/* floating-point-type */ value, int* exp);
  constexpr float frexpf(float value, int* exp);
  constexpr long double frexpl(long double value, int* exp);
 
  constexpr int ilogb(/* floating-point-type */ x);
  constexpr int ilogbf(float x);
  constexpr int ilogbl(long double x);
 
  constexpr /* floating-point-type */ ldexp(/* floating-point-type */ x, int exp);
  constexpr float ldexpf(float x, int exp);
  constexpr long double ldexpl(long double x, int exp);
 
  /* floating-point-type */ log(/* floating-point-type */ x);
  float logf(float x);
  long double logl(long double x);
 
  /* floating-point-type */ log10(/* floating-point-type */ x);
  float log10f(float x);
  long double log10l(long double x);
 
  /* floating-point-type */ log1p(/* floating-point-type */ x);
  float log1pf(float x);
  long double log1pl(long double x);
 
  /* floating-point-type */ log2(/* floating-point-type */ x);
  float log2f(float x);
  long double log2l(long double x);
 
  constexpr /* floating-point-type */ logb(/* floating-point-type */ x);
  constexpr float logbf(float x);
  constexpr long double logbl(long double x);
 
  constexpr /* floating-point-type */ modf(/* floating-point-type */ value,
                                           /* floating-point-type */* iptr);
  constexpr float modff(float value, float* iptr);
  constexpr long double modfl(long double value, long double* iptr);
 
  constexpr /* floating-point-type */ scalbn(/* floating-point-type */ x, int n);
  constexpr float scalbnf(float x, int n);
  constexpr long double scalbnl(long double x, int n);
 
  constexpr /* floating-point-type */ scalbln(/* floating-point-type */ x, long int n);
  constexpr float scalblnf(float x, long int n);
  constexpr long double scalblnl(long double x, long int n);
 
  /* floating-point-type */ cbrt(/* floating-point-type */ x);
  float cbrtf(float x);
  long double cbrtl(long double x);
 
  // absolute values
  constexpr int abs(int j);                     // freestanding
  constexpr long int abs(long int j);           // freestanding
  constexpr long long int abs(long long int j); // freestanding
  constexpr /* floating-point-type */
    abs(/* floating-point-type */ j);           // freestanding-deleted
 
  constexpr /* floating-point-type */ fabs(/* floating-point-type */ x);
  constexpr float fabsf(float x);
  constexpr long double fabsl(long double x);
 
  /* floating-point-type */ hypot(/* floating-point-type */ x,
                                  /* floating-point-type */ y);
  float hypotf(float x, float y);
  long double hypotl(long double x, long double y);
 
  // three-dimensional hypotenuse
  float hypot(/* floating-point-type */ x,
              /* floating-point-type */ y,
              /* floating-point-type */ z);
 
  /* floating-point-type */ pow(/* floating-point-type */ x,
                                /* floating-point-type */ y);
  float powf(float x, float y);
  long double powl(long double x, long double y);
 
  /* floating-point-type */ sqrt(/* floating-point-type */ x);
  float sqrtf(float x);
  long double sqrtl(long double x);
 
  /* floating-point-type */ erf(/* floating-point-type */ x);
  float erff(float x);
  long double erfl(long double x);
 
  /* floating-point-type */ erfc(/* floating-point-type */ x);
  float erfcf(float x);
  long double erfcl(long double x);
 
  /* floating-point-type */ lgamma(/* floating-point-type */ x);
  float lgammaf(float x);
  long double lgammal(long double x);
 
  /* floating-point-type */ tgamma(/* floating-point-type */ x);
  float tgammaf(float x);
  long double tgammal(long double x);
 
  constexpr /* floating-point-type */ ceil(/* floating-point-type */ x);
  constexpr float ceilf(float x);
  constexpr long double ceill(long double x);
 
  constexpr /* floating-point-type */ floor(/* floating-point-type */ x);
  constexpr float floorf(float x);
  constexpr long double floorl(long double x);
 
  /* floating-point-type */ nearbyint(/* floating-point-type */ x);
  float nearbyintf(float x);
  long double nearbyintl(long double x);
 
  /* floating-point-type */ rint(/* floating-point-type */ x);
  float rintf(float x);
  long double rintl(long double x);
 
  long int lrint(/* floating-point-type */ x);
  long int lrintf(float x);
  long int lrintl(long double x);
 
  long long int llrint(/* floating-point-type */ x);
  long long int llrintf(float x);
  long long int llrintl(long double x);
 
  constexpr /* floating-point-type */ round(/* floating-point-type */ x);
  constexpr float roundf(float x);
  constexpr long double roundl(long double x);
 
  constexpr long int lround(/* floating-point-type */ x);
  constexpr long int lroundf(float x);
  constexpr long int lroundl(long double x);
 
  constexpr long long int llround(/* floating-point-type */ x);
  constexpr long long int llroundf(float x);
  constexpr long long int llroundl(long double x);
 
  constexpr /* floating-point-type */ trunc(/* floating-point-type */ x);
  constexpr float truncf(float x);
  constexpr long double truncl(long double x);
 
  constexpr /* floating-point-type */ fmod(/* floating-point-type */ x,
                                           /* floating-point-type */ y);
  constexpr float fmodf(float x, float y);
  constexpr long double fmodl(long double x, long double y);
 
  constexpr /* floating-point-type */ remainder(/* floating-point-type */ x,
                                                /* floating-point-type */ y);
  constexpr float remainderf(float x, float y);
  constexpr long double remainderl(long double x, long double y);
 
  constexpr /* floating-point-type */ remquo(/* floating-point-type */ x,
                                             /* floating-point-type */ y, int* quo);
  constexpr float remquof(float x, float y, int* quo);
  constexpr long double remquol(long double x, long double y, int* quo);
 
  constexpr /* floating-point-type */ copysign(/* floating-point-type */ x,
                                               /* floating-point-type */ y);
  constexpr float copysignf(float x, float y);
  constexpr long double copysignl(long double x, long double y);
 
  double nan(const char* tagp);
  float nanf(const char* tagp);
  long double nanl(const char* tagp);
 
  constexpr /* floating-point-type */ nextafter(/* floating-point-type */ x,
                                                /* floating-point-type */ y);
  constexpr float nextafterf(float x, float y);
  constexpr long double nextafterl(long double x, long double y);
 
  constexpr /* floating-point-type */ nexttoward(/* floating-point-type */ x,
                                                 long double y);
  constexpr float nexttowardf(float x, long double y);
  constexpr long double nexttowardl(long double x, long double y);
 
  constexpr /* floating-point-type */ fdim(/* floating-point-type */ x,
                                           /* floating-point-type */ y);
  constexpr float fdimf(float x, float y);
  constexpr long double fdiml(long double x, long double y);
 
  constexpr /* floating-point-type */ fmax(/* floating-point-type */ x,
                                           /* floating-point-type */ y);
  constexpr float fmaxf(float x, float y);
  constexpr long double fmaxl(long double x, long double y);
 
  constexpr /* floating-point-type */ fmin(/* floating-point-type */ x,
                                           /* floating-point-type */ y);
  constexpr float fminf(float x, float y);
  constexpr long double fminl(long double x, long double y);
 
  constexpr /* floating-point-type */ fma(/* floating-point-type */ x,
                                          /* floating-point-type */ y,
                                          /* floating-point-type */ z);
  constexpr float fmaf(float x, float y, float z);
  constexpr long double fmal(long double x, long double y, long double z);
 
  // linear interpolation
  constexpr /* floating-point-type */ lerp(/* floating-point-type */ a,
                                           /* floating-point-type */ b,
                                           /* floating-point-type */ t) noexcept;
 
  // classification / comparison functions
  constexpr int fpclassify(/* floating-point-type */ x);
 
  constexpr bool isfinite(/* floating-point-type */ x);
 
  constexpr bool isinf(/* floating-point-type */ x);
 
  constexpr bool isnan(/* floating-point-type */ x);
 
  constexpr bool isnormal(/* floating-point-type */ x);
 
  constexpr bool signbit(/* floating-point-type */ x);
 
  constexpr bool isgreater(/* floating-point-type */ x,
                           /* floating-point-type */ y);
 
  constexpr bool isgreaterequal(/* floating-point-type */ x,
                                /* floating-point-type */ y);
 
  constexpr bool isless(/* floating-point-type */ x,
                        /* floating-point-type */ y);
 
  constexpr bool islessequal(/* floating-point-type */ x,
                             /* floating-point-type */ y);
 
  constexpr bool islessgreater(/* floating-point-type */ x,
                               /* floating-point-type */ y);
 
  constexpr bool isunordered(/* floating-point-type */ x,
                             /* floating-point-type */ y);
 
  // mathematical special functions
 
  // associated Laguerre polynomials
  /* floating-point-type */ assoc_laguerre(unsigned n, unsigned m,
                                           /* floating-point-type */ x);
  float assoc_laguerref(unsigned n, unsigned m, float x);
  long double assoc_laguerrel(unsigned n, unsigned m, long double x);
 
  // associated Legendre functions
  /* floating-point-type */ assoc_legendre(unsigned l, unsigned m,
                                           /* floating-point-type */ x);
  float assoc_legendref(unsigned l, unsigned m, float x);
  long double assoc_legendrel(unsigned l, unsigned m, long double x);
 
  // beta function
  /* floating-point-type */ beta(/* floating-point-type */ x,
                                 /* floating-point-type */ y);
  float betaf(float x, float y);
  long double betal(long double x, long double y);
 
  // complete elliptic integral of the first kind
  /* floating-point-type */ comp_ellint_1(/* floating-point-type */ k);
  float comp_ellint_1f(float k);
  long double comp_ellint_1l(long double k);
 
  // complete elliptic integral of the second kind
  /* floating-point-type */ comp_ellint_2(/* floating-point-type */ k);
  float comp_ellint_2f(float k);
  long double comp_ellint_2l(long double k);
 
  // complete elliptic integral of the third kind
  /* floating-point-type */ comp_ellint_3(/* floating-point-type */ k,
                                          /* floating-point-type */ nu);
  float comp_ellint_3f(float k, float nu);
  long double comp_ellint_3l(long double k, long double nu);
 
  // regular modified cylindrical Bessel functions
  /* floating-point-type */ cyl_bessel_i(/* floating-point-type */ nu,
                                         /* floating-point-type */ x);
  float cyl_bessel_if(float nu, float x);
  long double cyl_bessel_il(long double nu, long double x);
 
  // cylindrical Bessel functions of the first kind
  /* floating-point-type */ cyl_bessel_j(/* floating-point-type */ nu,
                                         /* floating-point-type */ x);
  float cyl_bessel_jf(float nu, float x);
  long double cyl_bessel_jl(long double nu, long double x);
 
  // irregular modified cylindrical Bessel functions
  /* floating-point-type */ cyl_bessel_k(/* floating-point-type */ nu,
                                         /* floating-point-type */ x);
  float cyl_bessel_kf(float nu, float x);
  long double cyl_bessel_kl(long double nu, long double x);
 
  // cylindrical Neumann functions;
  // cylindrical Bessel functions of the second kind
  /* floating-point-type */ cyl_neumann(/* floating-point-type */ nu,
                                        /* floating-point-type */ x);
  float cyl_neumannf(float nu, float x);
  long double cyl_neumannl(long double nu, long double x);
 
  // incomplete elliptic integral of the first kind
  /* floating-point-type */ ellint_1(/* floating-point-type */ k,
                                     /* floating-point-type */ phi);
  float ellint_1f(float k, float phi);
  long double ellint_1l(long double k, long double phi);
 
  // incomplete elliptic integral of the second kind
  /* floating-point-type */ ellint_2(/* floating-point-type */ k,
                                     /* floating-point-type */ phi);
  float ellint_2f(float k, float phi);
  long double ellint_2l(long double k, long double phi);
 
  // incomplete elliptic integral of the third kind
  /* floating-point-type */ ellint_3(/* floating-point-type */ k,
                                     /* floating-point-type */ nu,
                                     /* floating-point-type */ phi);
  float ellint_3f(float k, float nu, float phi);
  long double ellint_3l(long double k, long double nu, long double phi);
 
  // exponential integral
  /* floating-point-type */ expint(/* floating-point-type */ x);
  float expintf(float x);
  long double expintl(long double x);
 
  // Hermite polynomials
  /* floating-point-type */ hermite(unsigned n, /* floating-point-type */ x);
  float hermitef(unsigned n, float x);
  long double hermitel(unsigned n, long double x);
 
  // Laguerre polynomials
  /* floating-point-type */ laguerre(unsigned n, /* floating-point-type */ x);
  float laguerref(unsigned n, float x);
  long double laguerrel(unsigned n, long double x);
 
  // Legendre polynomials
  /* floating-point-type */ legendre(unsigned l, /* floating-point-type */ x);
  float legendref(unsigned l, float x);
  long double legendrel(unsigned l, long double x);
 
  // Riemann zeta function
  /* floating-point-type */ riemann_zeta(/* floating-point-type */ x);
  float riemann_zetaf(float x);
  long double riemann_zetal(long double x);
 
  // spherical Bessel functions of the first kind
  /* floating-point-type */ sph_bessel(unsigned n, /* floating-point-type */ x);
  float sph_besself(unsigned n, float x);
  long double sph_bessell(unsigned n, long double x);
 
  // spherical associated Legendre functions
  /* floating-point-type */ sph_legendre(unsigned l, unsigned m,
                                         /* floating-point-type */ theta);
  float sph_legendref(unsigned l, unsigned m, float theta);
  long double  sph_legendrel(unsigned l, unsigned m, long double theta);
 
  // spherical Neumann functions;
  // spherical Bessel functions of the second kind
  /* floating-point-type */ sph_neumann(unsigned n, /* floating-point-type */ x);
  float sph_neumannf(unsigned n, float x);
  long double sph_neumannl(unsigned n, long double x);
}