ILogarithmicFunctions<TSelf>.Log 메서드

정의

오버로드

Log(TSelf)

값의 자연(base-E 로그)을 계산합니다.

Log(TSelf, TSelf)

지정된 기준에서 값의 로그를 계산합니다.

Log(TSelf)

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

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

적용 대상