Single.Log メソッド

定義

オーバーロード

名前 説明
Log(Single, Single)

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

Log(Single)

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

Log(Single, Single)

ソース:
Single.cs
ソース:
Single.cs
ソース:
Single.cs
ソース:
Single.cs
ソース:
Single.cs

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

public:
 static float Log(float x, float newBase) = System::Numerics::ILogarithmicFunctions<float>::Log;
public static float Log(float x, float newBase);
static member Log : single * single -> single
Public Shared Function Log (x As Single, newBase As Single) As Single

パラメーター

x
Single

対数を計算する値。

newBase
Single

対数を計算する底。

返品

newBaseの底x対数。

実装

適用対象

Log(Single)

ソース:
Single.cs
ソース:
Single.cs
ソース:
Single.cs
ソース:
Single.cs
ソース:
Single.cs

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

public:
 static float Log(float x) = System::Numerics::ILogarithmicFunctions<float>::Log;
public static float Log(float x);
static member Log : single -> single
Public Shared Function Log (x As Single) As Single

パラメーター

x
Single

自然対数を計算する値。

返品

xの自然対数。

実装

適用対象