frexp
Da cppreference.com.
|
|
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
<metanoindex/>
<tbody> </tbody>| Elemento definito nell'header <math.h>
|
||
float frexpf( float arg, int* exp ); |
||
double frexp( double arg, int* exp ); |
||
long double frexpl( long double arg, int* exp ); |
||
Si decompone dato valore in virgola mobile al significante ed esponente.
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.
Parametri
| arg | - | valore in virgola mobile
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 | - | puntatore al valore intero per memorizzare l'esponente 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. |
Valore di ritorno
Significante del numero dato in virgola mobile nell'intervallo
[0.5; 1). L'esponente viene messa in valore intero puntato da 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.
Vedi anche
moltiplica un numero per 2 elevato a una potenzaOriginal: multiplies a number by 2 raised to a powerThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) | |
(C99) |
estrae esponente del numero Original: extracts exponent of the number The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) |
(C99) |
estrae esponente del numero Original: extracts exponent of the number The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) |
scompone un numero in parti intere e frazionarie Original: decomposes a number into integer and fractional parts The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) | |
C++ documentation for frexp
| |