std::frexp
De cppreference.com
<metanoindex/>
<tbody> </tbody>| Definido no cabeçalho <cmath>
|
||
float frexp( float arg, int* exp ); |
||
double frexp( double arg, int* exp ); |
||
long double frexp( long double arg, int* exp ); |
||
double frexp( Integral arg, int* exp ); |
(desde C++11) | |
Decompõe-se o valor determinado ponto flutuante para significand e expoente.
Original:
Decomposes given floating point value to significand and exponent.
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
| arg | - | flutuando valor de ponto
Original: floating point value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| exp | - | ponteiro para valor inteiro para armazenar o expoente a
Original: pointer to integer value to store the exponent to 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
significando o número de ponto flutuante dado na gama de
[0.5; 1). O expoente é colocado em valor inteiro apontado por exp.Original:
significand of the given floating point number in the range of
[0.5; 1). The exponent is put into integer value pointed to by exp.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.
