ILogarithmicFunctions<TSelf>.Log メソッド

定義

オーバーロード

Log(TSelf)

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

Log(TSelf, TSelf)

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

Log(TSelf)

ソース:
ILogarithmicFunctions.cs
ソース:
ILogarithmicFunctions.cs
ソース:
ILogarithmicFunctions.cs

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

public:
 static TSelf Log(TSelf x);
public static abstract TSelf Log (TSelf x);
static member Log : 'Self -> 'Self
Public Shared Function Log (x As TSelf) As TSelf

パラメーター

x
TSelf

自然対数を計算する値。

戻り値

TSelf

x の自然対数。

適用対象

Log(TSelf, TSelf)

ソース:
ILogarithmicFunctions.cs
ソース:
ILogarithmicFunctions.cs
ソース:
ILogarithmicFunctions.cs

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

public:
 static TSelf Log(TSelf x, TSelf newBase);
public static abstract TSelf Log (TSelf x, TSelf newBase);
static member Log : 'Self * 'Self -> 'Self
Public Shared Function Log (x As TSelf, newBase As TSelf) As TSelf

パラメーター

x
TSelf

対数を計算する値。

newBase
TSelf

対数を計算する底。

戻り値

TSelf

の底newBase 対数 x

適用対象