std::asin
Aus cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody>| definiert in Header <cmath>
|
||
float asin( float arg ); |
||
double asin( double arg ); |
||
long double asin( long double arg ); |
||
double asin( Integral arg ); |
(seit C++11) | |
Berechnet Arcussinus
argOriginal:
Computes arc sine of
argThe 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
| arg | - | 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
Arcussinus
arg im Bogenmaß im Bereich von [-π/2; π/2] Bogenmaß .Original:
arc sine of
arg in radians in the range of [-π/2; π/2] radians.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.
Domain-Fehler tritt auf, wenn
arg außerhalb des Bereichs [-1.0; 1.0] ist. NAN wird in diesem Fall wieder .Original:
Domain error occurs if
arg is outside the range [-1.0; 1.0]. 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.
You can help to correct and verify the translation. Click here for instructions.
Siehe auch
berechnet Arcuscosinus (arccos(x)) Original: computes arc cosine (arccos(x)) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
berechnet Arcustangens (arctan(x)) Original: computes arc tangent (arctan(x)) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
Arcustangens mit Schildern Quadranten bestimmen Original: arc tangent, using signs to determine quadrants The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
berechnet Sinus (sin(x)) Original: computes sine (sin(x)) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
(C++11) |
computes arc sine of a complex number (arcsin(z)) (Funktions-Template) |
wendet die Funktion std::asin auf jedes Element valarray Original: applies the function std::asin to each element of valarray The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |