NFloat.Log 메서드

정의

오버로드

Log(NFloat)

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

Log(NFloat, NFloat)

지정된 베이스에 있는 값의 로그를 계산합니다.

Log(NFloat)

Source:
NFloat.cs
Source:
NFloat.cs
Source:
NFloat.cs

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

public:
 static System::Runtime::InteropServices::NFloat Log(System::Runtime::InteropServices::NFloat x) = System::Numerics::ILogarithmicFunctions<System::Runtime::InteropServices::NFloat>::Log;
public static System.Runtime.InteropServices.NFloat Log (System.Runtime.InteropServices.NFloat x);
static member Log : System.Runtime.InteropServices.NFloat -> System.Runtime.InteropServices.NFloat
Public Shared Function Log (x As NFloat) As NFloat

매개 변수

x
NFloat

자연 로그를 계산할 값입니다.

반환

x의 자연 로그입니다.

구현

적용 대상

Log(NFloat, NFloat)

Source:
NFloat.cs
Source:
NFloat.cs
Source:
NFloat.cs

지정된 베이스에 있는 값의 로그를 계산합니다.

public:
 static System::Runtime::InteropServices::NFloat Log(System::Runtime::InteropServices::NFloat x, System::Runtime::InteropServices::NFloat newBase) = System::Numerics::ILogarithmicFunctions<System::Runtime::InteropServices::NFloat>::Log;
public static System.Runtime.InteropServices.NFloat Log (System.Runtime.InteropServices.NFloat x, System.Runtime.InteropServices.NFloat newBase);
static member Log : System.Runtime.InteropServices.NFloat * System.Runtime.InteropServices.NFloat -> System.Runtime.InteropServices.NFloat
Public Shared Function Log (x As NFloat, newBase As NFloat) As NFloat

매개 변수

x
NFloat

로그를 계산할 값입니다.

newBase
NFloat

로그를 계산할 기준입니다.

반환

의 base-newBase logarithm입니다 x.

구현

적용 대상