Espaces de noms
Variantes
Affichages
Actions

Type-generic math

De cppreference.com
< c‎ | numeric

L'en-tête inclut <tgmath.h> les en-têtes et <math.h> <complex.h> et définit plusieurs types génériques macros. Ces macros détermine la fonction réelle d'appeler en fonction des types des paramètres .
Original:
The header <tgmath.h> includes the headers <math.h> and <complex.h> and defines several type-generic macros. These macros determines the actual function to call depending on the types of the parameters.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[modifier] Trigonométrique, hyperbolique, la puissance et les fonctions exponentielles NJ

Un XXX macro de type générique appelle soit de:
Original:
A type-generic macro XXX calls either of:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
  • fonction réelle:
    Original:
    real function:
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • float variante XXXf
    Original:
    float variant XXXf
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • double variante XXX
    Original:
    double variant XXX
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • long double variante XXXl
    Original:
    long double variant XXXl
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • fonction complexe:
    Original:
    complex function:
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • float variante cXXXf
    Original:
    float variant cXXXf
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • double variante cXXX
    Original:
    double variant cXXX
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • long double variante cXXXl
    Original:
    long double variant cXXXl
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
Une exception à la règle ci-dessus est exp (voir le tableau ci-dessous) .
Original:
An exception to the above rule is exp (see the table below).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
La fonction à appeler est déterminée comme suit:
Original:
The function to call is determined as follows:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
  • Si l'un des paramètres est complexe, alors la fonction est appelée complexe, sinon la fonction réelle est appelé .
    Original:
    If any of the parameters is complex, then the complex function is called, otherwise the real function is called.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • Si l'un des paramètres est long double, puis la variante long double est appelée. Autrement, si l'un des paramètres est double, puis la variante double est appelée. Dans le cas contraire, la variante float est appelé .
    Original:
    If any of the parameters is long double, then the long double variant is called. Otherwise, if any of the parameters is double, then the double variant is called. Otherwise, float variant is called.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • Le comportement est indéfini est l'un des paramètres est incompatible avec l'argument de la fonction correspondante.
    Original:
    The behavior is undefined is any of the parameters is incompatible with the corresponding argument of the function.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
Les macros de type génériques sont les suivants:
Original:
The type-generic macros are as follows:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Type-generic macro Real function
variants
Complex function
variants
 
float
double
long double
float
double
long double
asin asinf asin asinl casinf casin casinl
acos acosf acos acosl cacosf cacos cacosl
atan atanf atan atanl catanf catan catanl
asinh asinhf asinh asinhl casinhf casinh casinhl
acosh acoshf acosh acoshl cacoshf cacosh cacoshl
atanh atanhf atanh atanhl catanhf catanh catanhl
sin sinf sin sinl csinf csin csinl
cos cosf cos cosl ccosf ccos ccosl
tan tanf tan tanl ctanf ctan ctanl
sinh sinhf sinh sinhl csinhf csinh csinhl
cosh coshf cosh coshl ccoshf ccosh ccoshl
tanh tanhf tanh tanhl ctanhf ctanh ctanhl
exp expf exp expl cexpf cexp cexpl
log logf log logl clogf clog clogl
pow powf pow powl cpowf cpow cpowl
sqrt sqrtf sqrt sqrtl csqrtf csqrt csqrtl
abs fabsf fabs fabsl cabsf cabs cabsl
exp expf exp expl cexpf cexp cexpl

[modifier] Divers NJ fonctions

Un XXX macro de type générique appelle ou l'autre des variantes d'une fonction réelle:
Original:
A type-generic macro XXX calls either of the variants of a real function:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
  • float variante XXXf
    Original:
    float variant XXXf
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • double variante XXX
    Original:
    double variant XXX
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • long double variante XXXl
    Original:
    long double variant XXXl
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
Remarque, il n'y a pas modf type générique macro .
Original:
Note, there's no modf type-generic macro.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
La fonction à appeler est déterminée comme suit:
Original:
The function to call is determined as follows:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
  • Si l'un des paramètres est long double, puis la variante long double est appelée. Autrement, si l'un des paramètres est double, puis la variante double est appelée. Dans le cas contraire, la variante float est appelé .
    Original:
    If any of the parameters is long double, then the long double variant is called. Otherwise, if any of the parameters is double, then the double variant is called. Otherwise, float variant is called.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • Le comportement est indéfini est l'un des paramètres est incompatible avec l'argument de la fonction correspondante.
    Original:
    The behavior is undefined is any of the parameters is incompatible with the corresponding argument of the function.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
Type-generic macro Real function
variants
 
float
double
long double
atan2 atan2f atan2 atan2l
cbrt cbrtf cbrt cbrtl
ceil ceilf ceil ceill
copysign copysignf copysign copysignl
erf erff erf erfl
erfc erfcf erfc erfcl
exp2 exp2f exp2 exp2l
expm1 expm1f expm1 expm1l
fdim fdimf fdim fdiml
floor floorf floor floorl
fma fmaf fma fmal
fmax fmaxf fmax fmaxl
fmin fminf fmin fminl
fmod fmodf fmod fmodl
frexp frexpf frexp frexpl
hypot hypotf hypot hypotl
ilogb ilogbf ilogb ilogbl
ldexp ldexpf ldexp ldexpl
lgamma lgammaf lgamma lgammal
llrint llrintf llrint llrintl
llround llroundf llround llroundl
log10 log10f log10 log10l
log1p log1pf log1p log1pl
log2 log2f log2 log2l
logb logbf logb logbl
lrint lrintf lrint lrintl
lround lroundf lround lroundl
nearbyint nearbyintf nearbyint nearbyintl
nextafter nextafterf nextafter nextafterl
nexttoward nexttowardf nexttoward nexttowardl
remainder remainderf remainder remainderl
remquo remquof remquo remquol
rint rintf rint rintl
round roundf round roundl
scalbln scalblnf scalbln scalblnl
scalbn scalbnf scalbn scalbnl
tgamma tgammaf tgamma tgammal
trunc truncf trunc truncl

[modifier] Exemple

int i;
float f;
double d;
long double ld;
float complex fc;
double complex dc;
long double complex ldc;
 
// macro -> function call
cos(i);   // -> cos(i)
sin(f);   // -> sinf(f)
acos(d);  // -> acos(d)
sqrt(dc); // -> csqrt(dc);