NFloat.Log メソッド

定義

オーバーロード

Log(NFloat)

自然 (base-E 値の対数) を計算します。

Log(NFloat, NFloat)

指定した底の値の対数を計算します。

Log(NFloat)

ソース:
NFloat.cs
ソース:
NFloat.cs
ソース:
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)

ソース:
NFloat.cs
ソース:
NFloat.cs
ソース:
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

対数を計算する底。

戻り値

の底対newBasex

実装

適用対象