NFloat.Log 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Log(NFloat) |
计算值的自然 ( |
Log(NFloat, NFloat) |
计算指定基数中某个值的对数。 |
Log(NFloat)
- Source:
- NFloat.cs
- Source:
- NFloat.cs
- Source:
- NFloat.cs
计算值的自然 (base-E
对数。
public:
static System::Runtime::InteropServices::NFloat Log(System::Runtime::InteropServices::NFloat x) = System::Numerics::ILogarithmicFunctions<System::Runtime::InteropServices::NFloat>::Log;
public static System.Runtime.InteropServices.NFloat Log (System.Runtime.InteropServices.NFloat x);
static member Log : System.Runtime.InteropServices.NFloat -> System.Runtime.InteropServices.NFloat
Public Shared Function Log (x As NFloat) As NFloat
参数
- x
- NFloat
要计算其自然对数的值。
返回
x
的自然对数。
实现
适用于
Log(NFloat, NFloat)
- Source:
- NFloat.cs
- Source:
- NFloat.cs
- Source:
- NFloat.cs
计算指定基数中某个值的对数。
public:
static System::Runtime::InteropServices::NFloat Log(System::Runtime::InteropServices::NFloat x, System::Runtime::InteropServices::NFloat newBase) = System::Numerics::ILogarithmicFunctions<System::Runtime::InteropServices::NFloat>::Log;
public static System.Runtime.InteropServices.NFloat Log (System.Runtime.InteropServices.NFloat x, System.Runtime.InteropServices.NFloat newBase);
static member Log : System.Runtime.InteropServices.NFloat * System.Runtime.InteropServices.NFloat -> System.Runtime.InteropServices.NFloat
Public Shared Function Log (x As NFloat, newBase As NFloat) As NFloat
参数
- x
- NFloat
要计算其对数的值。
- newBase
- NFloat
要计算对数的基数。
返回
的基newBase
数对数 x
。