ITrigonometricFunctions<TSelf>.SinCosPi(TSelf) メソッド

定義

が乗算 piされた値のサインとコサインを計算します。

public:
 static ValueTuple<TSelf, TSelf> SinCosPi(TSelf x);
public static abstract (TSelf SinPi, TSelf CosPi) SinCosPi (TSelf x);
static member SinCosPi : 'Self -> ValueTuple<'Self, 'Self (requires 'Self :> System.Numerics.ITrigonometricFunctions<'Self> and 'Self :> System.Numerics.ITrigonometricFunctions<'Self>)>
Public Shared Function SinCosPi (x As TSelf) As ValueTuple(Of TSelf, TSelf)

パラメーター

x
TSelf

サインとコサインを計算する前に、 によって pi 倍数化される半回転単位の値。

戻り値

ValueTuple<TSelf,TSelf>

のサインとコサインxを乗算した 。pi

注釈

これにより、 が計算されます (sin(x * π), cos(x * π))

適用対象