Single.Log メソッド

定義

オーバーロード

Log(Single, Single)

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

Log(Single)

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

Log(Single, Single)

Source:
Single.cs
Source:
Single.cs
Source:
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)

Source:
Single.cs
Source:
Single.cs
Source:
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 の自然対数。

実装

適用対象