NFloat.SinCos(NFloat) Methode

Definition

Berechnet den Sinus und den Kosinus eines Werts.

public:
 static ValueTuple<System::Runtime::InteropServices::NFloat, System::Runtime::InteropServices::NFloat> SinCos(System::Runtime::InteropServices::NFloat x) = System::Numerics::ITrigonometricFunctions<System::Runtime::InteropServices::NFloat>::SinCos;
public static (System.Runtime.InteropServices.NFloat Sin, System.Runtime.InteropServices.NFloat Cos) SinCos (System.Runtime.InteropServices.NFloat x);
static member SinCos : System.Runtime.InteropServices.NFloat -> ValueTuple<System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat>
Public Shared Function SinCos (x As NFloat) As ValueTuple(Of NFloat, NFloat)

Parameter

x
NFloat

Der Wert im Bogenmaß, dessen Sinus und Kosinus berechnet werden sollen.

Gibt zurück

Sinus und Kosinus von x.

Implementiert

Hinweise

Dadurch wird berechnet (sin(x), cos(x)).

Gilt für: