ILogarithmicFunctions<TSelf>.Log Método

Definición

Sobrecargas

Log(TSelf)

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

Log(TSelf, TSelf)

Calcula el logaritmo de un valor en la base especificada.

Log(TSelf)

Source:
ILogarithmicFunctions.cs
Source:
ILogarithmicFunctions.cs
Source:
ILogarithmicFunctions.cs

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

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

Parámetros

x
TSelf

Valor cuyo logaritmo natural se va a calcular.

Devoluciones

TSelf

Logaritmo natural de x.

Se aplica a

Log(TSelf, TSelf)

Source:
ILogarithmicFunctions.cs
Source:
ILogarithmicFunctions.cs
Source:
ILogarithmicFunctions.cs

Calcula el logaritmo de un valor en la base especificada.

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

Parámetros

x
TSelf

Valor cuyo logaritmo se va a calcular.

newBase
TSelf

Base en la que se va a calcular el logaritmo.

Devoluciones

TSelf

Logaritmo basenewBase de x.

Se aplica a