std::log10 – cppreference.com
Aus cppreference.com
<metanoindex/>
<tbody> </tbody>
| definiert in Header <cmath> |
||
|
|
||
|
|
||
|
|
||
|
|
(seit C++11) | |
Berechnet den gemeinsamen (Basis 10) Logarithmus arg .
Original:
Computes the common (base 10) logarithm of arg.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Parameter
| arg | - | Floating-Point-Wert Original: floating point value The text has been machine-translated via Google Translate. |
Rückgabewert
Basis 10 Logarithmus arg .
Original:
base 10 logarithm of arg.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Domain-Fehler tritt auf, wenn arg negativ ist. NAN wird in diesem Fall wieder .
Original:
Domain error occurs if arg is negative. NAN is returned in that case.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Bereichs-Fehler tritt auf, wenn arg ist 0. -HUGE_VAL wird in diesem Fall wieder .
Original:
Range error occurs if arg is 0. -HUGE_VAL is returned in that case.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Siehe auch
berechnet natürlichen (base e) Logarithmus (zur Basis e) (ln(x)) Original: computes natural (base e) logarithm (to base e) (ln(x)) The text has been machine-translated via Google Translate. (Funktion) [edit] | |
wirft eine Reihe an die angegebene Leistung (xy) Original: raises a number to the given power (xy) The text has been machine-translated via Google Translate. (Funktion) [edit] | |
| complex common logarithm with the branch cuts along the negative real axis (Funktions-Template) [edit] | |
wendet die Funktion std::log10 auf jedes Element valarray Original: applies the function std::log10 to each element of valarray The text has been machine-translated via Google Translate. (Funktions-Template) [edit] | |