nextafter, nexttoward
De cppreference.com
(Redirecionado de c/numeric/math/nexttoward)
|
|
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>| Definido no cabeçalho <math.h>
|
||
float nextafterf( float from, float to ); |
||
double nextafter( double from, double to ); |
||
long double nextafterl( long double from, long double to ); |
||
float nexttowardf( float from, long double to ); |
||
double nexttoward( double from, long double to ); |
||
long double nexttowardl( long double from, long double to ); |
||
Retorna o próximo valor representável de
from na direção de to. Se from igual a to, to é retornado.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.
Parâmetros
| from, to | - | valores de ponto flutuante
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. |
Valor de retorno
O próximo valor da
from representável no sentido 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.
Exemplo
| Esta seção está incompleta Motivo: sem exemplo |
Veja também
C++ documentation for nextafter
|