MathF.Log2(Single) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回指定数字以 2 为底的对数。
public:
static float Log2(float x);
public static float Log2 (float x);
static member Log2 : single -> single
Public Shared Function Log2 (x As Single) As Single
参数
- x
- Single
要查找其对数的数字。
返回
下表中的值之一。
x 参数 | 返回值 |
---|---|
正 |
x 以 2 为底的对数,即 log 2x 。
|
零 | NegativeInfinity |
负数 | NaN |
等于 NaN | NaN |
等于 PositiveInfinity | PositiveInfinity |
注解
参数 x
指定为基数 10。
此方法调用基础 C 运行时,不同的操作系统或体系结构的确切结果或有效输入范围可能有所不同。