nextafter, nexttoward
Материал из 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. |
| Заголовочный файл <math.h>
|
||
| float nextafterf( float from, float to ); |
(начиная с C99) | |
| double nextafter( double from, double to ); |
(начиная с C99) | |
| long double nextafterl( long double from, long double to ); |
(начиная с C99) | |
| float nexttowardf( float from, long double to ); |
(начиная с C99) | |
| double nexttoward( double from, long double to ); |
(начиная с C99) | |
| long double nexttowardl( long double from, long double to ); |
(начиная с C99) | |
Возвращает следующий представимо значение
from в направлении to. Если from равно to, to возвращается.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.
Содержание |
[править] Параметры
| from, to | - | с плавающей точкой
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. |
[править] Возвращаемое значение
Следующий представимо значение
from в направлении 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.
[править] Пример
| Этот раздел не завершён Причина: нет примера |
[править] См. также
| C++ документация для nextafter
|