std::exp2
Aus cppreference.com
<metanoindex/>
<tbody> </tbody>| definiert in Header <cmath>
|
||
double exp2( double n ); |
(seit C++11) | |
float exp2( float n ); |
(seit C++11) | |
long double exp2( long double n ); |
(seit C++11) | |
double exp2( Integral n ); |
(seit C++11) | |
Berechnet 2 hoch vorgegebenen Strom
nOriginal:
Computes 2 raised to the given power
nThe 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.
Parameter
| n | - | Floating-Point-Wert
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. |
Rückgabewert
2 hoch die
n (d.h. 2n)Original:
2 raised to the
n (i.e. 2n)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.
Wenn das Ergebnis zu groß für den zugrunde liegenden Typ, tritt Bereich Fehler-und HUGE_VAL zurückgegeben .
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.
