ILogarithmicFunctions<TSelf>.Log 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Log(TSelf) |
计算值的自然 ( |
Log(TSelf, TSelf) |
计算指定基数中某个值的对数。 |
Log(TSelf)
- 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
计算指定基数中某个值的对数。
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
。