MathF.Log 方法

定义

重载

Log(Single)

返回指定数字的自然 (base e) 对数。

Log(Single, Single)

返回指定基数中指定数字的对数。

Log(Single)

Source:
MathF.cs
Source:
MathF.cs
Source:
MathF.cs

返回指定数字的自然 (base e) 对数。

public:
 static float Log(float x);
public static float Log (float x);
static member Log : single -> single
Public Shared Function Log (x As Single) As Single

参数

x
Single

要获取其自然日志的数字。

返回

x 的自然日志

注解

参数 x 指定为 10 基数。

此方法调用基础 C 运行时,确切的结果或有效输入范围在不同操作系统或体系结构之间可能有所不同。

另请参阅

适用于

Log(Single, Single)

Source:
MathF.cs
Source:
MathF.cs
Source:
MathF.cs

返回指定基数中指定数字的对数。

public:
 static float Log(float x, float y);
public static float Log (float x, float y);
static member Log : single * single -> single
Public Shared Function Log (x As Single, y As Single) As Single

参数

x
Single

要获取其日志的数字。

y
Single

日志的基数

返回

具有基 yx 日志

注解

此方法调用基础 C 运行时,确切的结果或有效输入范围在不同操作系统或体系结构之间可能有所不同。

适用于