IFloatingPointIeee754<TSelf>.Atan2(TSelf, TSelf) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
计算两个值的商的反正切值。
public:
static TSelf Atan2(TSelf y, TSelf x);
public static abstract TSelf Atan2 (TSelf y, TSelf x);
static member Atan2 : 'Self * 'Self -> 'Self
Public Shared Function Atan2 (y As TSelf, x As TSelf) As TSelf
参数
- y
- TSelf
点的 y 坐标。
- x
- TSelf
点的 x 坐标。
返回
TSelf
除以 x
的y
反正切值。
注解
这将以间隔[-π, +π]
弧度计算arctan(y / x)
。