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

定義

値のサインとコサインを計算します。

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

パラメーター

x
TSelf

サインとコサインを計算するラジアン単位の値。

戻り値

ValueTuple<TSelf,TSelf>

のサインとコサイン x

注釈

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

適用対象