Namensräume
Varianten

FP_NORMAL, FP_SUBNORMAL, FP_ZERO, FP_INFINITE, FP_NAN

Aus cppreference.com
< c‎ | numeric‎ | math

 
 
 
Gemeinsame mathematischen Funktionen
Funktionen
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Grundlegende Bedienung
Original:
Basic operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
remainder(C99)
remquo(C99)
fma(C99)
fmax(C99)
fmin(C99)
fdim(C99)
nan
nanf
nanl
(C99)
(C99)
(C99)
Exponentialfunktionen
Original:
Exponential functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
exp
exp2(C99)
expm1(C99)
Power-Funktionen
Original:
Power functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Trigonometrische und hyperbolische Funktionen
Original:
Trigonometric and hyperbolic functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Fehler-und Gamma-Funktionen
Original:
Error and gamma functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
erf(C99)
erfc(C99)
lgamma(C99)
tgamma(C99)
Nächste ganze Zahl Fließkomma-Operationen
Original:
Nearest integer floating point operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
trunc(C99)
nearbyint(C99)
rint
lrint
llrint
(C99)
(C99)
(C99)
Floating-Point-Manipulation Funktionen
Original:
Floating point manipulation functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
ldexp
scalbn
scalbln
(C99)
(C99)
ilogb(C99)
logb(C99)
Klassifizierung
Original:
Classification
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
fpclassify(C99)
isfinite(C99)
isinf(C99)
isnan(C99)
isnormal(C99)
signbit(C99)
Makro Konstanten
Original:
Macro constants
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
FP_NORMAL
FP_SUBNORMAL
FP_ZERO
FP_INFINITE
FP_NAN
(C99)
(C99)
(C99)
(C99)
(C99)
 
definiert in Header <math.h>
#define FP_NORMAL    /*implementation defined*/
#define FP_SUBNORMAL /*implementation defined*/
#define FP_ZERO      /*implementation defined*/
#define FP_INFINITE  /*implementation defined*/
#define FP_NAN       /*implementation defined*/
Die FP_NORMAL, FP_SUBNORMAL, FP_ZERO, FP_INFINITE, FP_NAN Makros jeweils eine eigene Kategorie von Gleitkommazahlen. Sie alle zu einem Ganzzahlkonstantenausdruck zu erweitern .
Original:
The FP_NORMAL, FP_SUBNORMAL, FP_ZERO, FP_INFINITE, FP_NAN macros each represent a distinct category of floating-point numbers. They all expand to an integer constant expression.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Constant
Original:
Constant
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Explanation
FP_NORMAL
zeigt an, dass der Wert normal, dh nicht eine Unendlichkeit, subnormal, not-a-Zahl oder Null
Original:
indicates that the value is normal, i.e. not an infinity, subnormal, not-a-number or zero
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
FP_SUBNORMAL
zeigt an, dass der Wert subnormal ist
Original:
indicates that the value is subnormal
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
FP_ZERO
anzeigt, dass die positiven oder negativen Wert Null ist
Original:
indicates that the value is positive or negative zero
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
FP_INFINITE
zeigt an, dass der Wert nicht darstellbar ist durch den zugrunde liegenden Typ (positiv oder negativ unendlich)
Original:
indicates that the value is not representable by the underlying type (positive or negative infinity)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
FP_NAN
zeigt an, dass der Wert nicht-a-Zahl ist (NaN)
Original:
indicates that the value is not-a-number (NaN)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[Bearbeiten]Siehe auch

kategorisiert den angegebenen Gleitkommawert
Original:
categorizes the given floating point value
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion)[edit]
C++ documentation for FP_categories
close