NFloat.Log 方法

定义

重载

Log(NFloat)

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

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

实现

适用于