NFloat.Log Method

Definition

Overloads

Log(NFloat)

Computes the natural (base-E logarithm of a value.

Log(NFloat, NFloat)

Computes the logarithm of a value in the specified base.

Log(NFloat)

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

Computes the natural (base-E logarithm of a value.

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

Parameters

x
NFloat

The value whose natural logarithm is to be computed.

Returns

The natural logarithm of x.

Implements

Applies to

Log(NFloat, NFloat)

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

Computes the logarithm of a value in the specified base.

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

Parameters

x
NFloat

The value whose logarithm is to be computed.

newBase
NFloat

The base in which the logarithm is to be computed.

Returns

The base-newBase logarithm of x.

Implements

Applies to