fma
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody>| Déclaré dans l'en-tête <math.h>
|
||
float fmaf( float x, float y, float z ); |
||
double fma( double x, double y, double z ); |
||
long double fmal( long double x, long double y, long double z ); |
||
Calculer les fonctions fma
(x*y) + z, arrondie comme une opération ternaire, selon l'Original:
The fma functions compute
(x*y) + z, rounded as one ternary operation, according to theThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
mode d'arrondi caractérisé par la valeur de FLT_ROUNDS .
Original:
rounding mode characterized by the value of FLT_ROUNDS.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Paramètres
| x, y, z | - | valeurs à virgule flottante
Original: floating point values The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Retourne la valeur
(x*y) + z, arrondie comme une opération ternaireOriginal:
(x*y) + z, rounded as one ternary operationThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Voir aussi
(C99) |
signé reste de l'opération de division Original: signed remainder of the division operation The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) |
(C99) |
signé reste ainsi que les trois derniers bits de l'opération de division Original: signed remainder as well as the three last bits of the division operation The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) |
C++ documentation for fma
| |