ILogarithmicFunctions<TSelf>.Log メソッド

定義

オーバーロード

名前 説明
Log(TSelf)

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

Log(TSelf, TSelf)

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

Log(TSelf)

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

xの底newBase対数。

適用対象