NFloat.SinCos(NFloat) Metodo

Definizione

Calcola il seno e il coseno di un valore.

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)

Parametri

x
NFloat

Valore, espresso in radianti, il cui seno e il coseno devono essere calcolati.

Restituisce

Seno e coseno di x.

Implementazioni

Commenti

In questo modo viene calcolato (sin(x), cos(x)).

Si applica a