nextafter, nexttoward
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. |
| Défini dans l'entête <math.h>
|
||
| float nextafterf( float from, float to ); |
(depuis C99) | |
| double nextafter( double from, double to ); |
(depuis C99) | |
| long double nextafterl( long double from, long double to ); |
(depuis C99) | |
| float nexttowardf( float from, long double to ); |
(depuis C99) | |
| double nexttoward( double from, long double to ); |
(depuis C99) | |
| long double nexttowardl( long double from, long double to ); |
(depuis C99) | |
Retourne la valeur suivante de
from représentable dans le sens de to. Si from égal à to, to est retourné .Original:
Returns the next representable value of
from in the direction of to. If from equals to to, to is returned.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.
Sommaire |
[modifier] Paramètres
| from, to | - | 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. |
[modifier] Retourne la valeur
La valeur suivante de
from représentable dans le sens de to .Original:
The next representable value of
from in the direction of to.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.
[modifier] Exemple
| This section is incomplete Reason: no example |
[modifier] Voir aussi
| C++ documentation for nextafter
|