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. |
| Defined in header <math.h>
|
||
| float nextafterf( float from, float to ); |
(desde C99) | |
| double nextafter( double from, double to ); |
(desde C99) | |
| long double nextafterl( long double from, long double to ); |
(desde C99) | |
| float nexttowardf( float from, long double to ); |
(desde C99) | |
| double nexttoward( double from, long double to ); |
(desde C99) | |
| long double nexttowardl( long double from, long double to ); |
(desde C99) | |
Devuelve el siguiente valor representable de
from en la dirección de to. Si from es igual a to, to se devuelve .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.
Contenido |
[editar] Parámetros
| from, to | - | valores de punto flotante
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. |
[editar] Valor de retorno
El siguiente valor representable de
from en la dirección 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.
[editar] Ejemplo
| This section is incomplete Reason: no example |
[editar] Ver también
| C++ documentation for nextafter
|