NFloat.SinCos(NFloat) Méthode

Définition

Calcule le sinus et le cosinus d’une valeur.

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)

Paramètres

x
NFloat

Valeur, en radians, dont le sinus et le cosinus doivent être calculés.

Retours

Sinus et cosinus de x.

Implémente

Remarques

Cette opération calcule (sin(x), cos(x)).

S’applique à