Share via


NFloat.SinCosPi(NFloat) Método

Definición

Calcula el seno y el coseno de un valor.

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

Parámetros

x
NFloat

Valor, en media revolución, que se múltipa por pi antes de calcular su seno y coseno.

Devoluciones

Seno y coseno de x.

Implementaciones

Comentarios

Esto calcula (sin(x), cos(x)).

Se aplica a