std::expm1
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. |
Elemento definito nell'header <cmath>
|
||
float expm1( float arg ); |
(dal C++11) | |
double expm1( double arg ); |
(dal C++11) | |
long double expm1( long double arg ); |
(dal C++11) | |
double expm1( Integral arg ); |
(dal C++11) | |
Calcola la e (numero di Eulero,
2.7182818
) elevato alla arg
di potenza, meno 1. Questa funzione è più preciso l'espressione std::exp(arg)-1 arg
se è vicino a zero.Original:
Computes the e (Euler's number,
2.7182818
) raised to the given power arg
, minus 1. This function is more accurate than the expression std::exp(arg)-1 if arg
is close to zero.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.
[modifica] 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. |
[modifica] Valore di ritorno
earg
-1
Se il risultato è troppo grande per il tipo di fondo, l'errore si verifica e gamma HUGE_VAL viene restituito.
Original:
If the result is too large for the underlying type, range error occurs and HUGE_VAL 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.
[modifica] Vedi anche
ritorna e elevato alla potenza data (ex) Original: returns e raised to the given power (ex) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) | |
(C++11) |
logaritmo naturale (a base e) di 1 più il numero dato Original: natural logarithm (to base e) of 1 plus the given number The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) |
(C++11) |
torna 2 elevato alla potenza data (2x) Original: returns 2 raised to the given power (2x) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) |