ILogarithmicFunctions<TSelf>.Log 方法

定义

重载

名称 说明
Log(TSelf)

计算值的自然(base-E 对数)。

Log(TSelf, TSelf)

计算指定基中的值的对数。

Log(TSelf)

Source:
ILogarithmicFunctions.cs
Source:
ILogarithmicFunctions.cs
Source:
ILogarithmicFunctions.cs
Source:
ILogarithmicFunctions.cs
Source:
ILogarithmicFunctions.cs

计算值的自然(base-E 对数)。

public:
 static TSelf Log(TSelf x);
public static abstract TSelf Log(TSelf x);
static member Log : 'Self -> 'Self
Public Shared Function Log (x As TSelf) As TSelf

参数

x
TSelf

要计算其自然对数的值。

返回

TSelf

的自然对 x数。

适用于

Log(TSelf, TSelf)

Source:
ILogarithmicFunctions.cs
Source:
ILogarithmicFunctions.cs
Source:
ILogarithmicFunctions.cs
Source:
ILogarithmicFunctions.cs
Source:
ILogarithmicFunctions.cs

计算指定基中的值的对数。

public:
 static TSelf Log(TSelf x, TSelf newBase);
public static abstract TSelf Log(TSelf x, TSelf newBase);
static member Log : 'Self * 'Self -> 'Self
Public Shared Function Log (x As TSelf, newBase As TSelf) As TSelf

参数

x
TSelf

要计算其对数的值。

newBase
TSelf

要计算对数的基数。

返回

TSelf

的基newBase 对数 x

适用于