ITrigonometricFunctions<TSelf>.SinCos(TSelf) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
计算值的正弦值和余弦值。
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))
。