NFloat.Log Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
Log(NFloat) |
Calcula el natural ( |
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 denewBase
x
.