◐ Shell
clean mode source ↗

std::sin – cppreference.com

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

definiert in Header

<cmath>

float sin( float arg );

double sin( double arg );

long double sin( long double arg );

double sin( Integral arg );

(seit C++11)

Berechnet Sinus arg

Original:

Computes sine 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 -

Gleitkommawert repräsentiert Winkel im Bogenmaß

Original:

floating point value representing angle in radians

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Rückgabewert

Sinus arg im Bereich [-1 ; +1] .

Original:

sine of arg in the range [-1 ; +1].

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 unendlich ist. NAN wird in diesem Fall wieder .

Original:

Domain error occurs if arg is infinite. 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.

Siehe auch

berechnet Cosinus (cos(x))

Original:

computes cosine (cos(x))

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

berechnet Tangente (tan(x))

Original:

computes tangent (tan(x))

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

berechnet Arcussinus (arcsin(x))

Original:

computes arc sine (arcsin(x))

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

berechnet Sinus einer komplexen Zahl (sin(z))

Original:

computes sine of a complex number (sin(z))

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktions-Template) [edit]

wendet die Funktion std::sin auf jedes Element valarray

Original:

applies the function std::sin 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) [edit]