NFloat.Log Método

Definición

Sobrecargas

Log(NFloat)

Calcula el natural (base-E logaritmo de un valor.

Log(NFloat, NFloat)

Calcula el logaritmo de un valor en la base especificada.

Log(NFloat)

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

Calcula el natural (base-E logaritmo de un valor.

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

Parámetros

x
NFloat

Valor cuyo logaritmo natural se va a calcular.

Devoluciones

Logaritmo natural de x.

Implementaciones

Se aplica a

Log(NFloat, NFloat)

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

Calcula el logaritmo de un valor en la base especificada.

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

Parámetros

x
NFloat

Valor cuyo logaritmo se va a calcular.

newBase
NFloat

Base en la que se va a calcular el logaritmo.

Devoluciones

Logaritmo base denewBasex.

Implementaciones

Se aplica a