ILogarithmicFunctions<TSelf>.Log Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
Log(TSelf) |
Calcula o natural ( |
Log(TSelf, TSelf) |
Calcula o logaritmo de um valor na base especificada. |
Log(TSelf)
- Origem:
- ILogarithmicFunctions.cs
- Origem:
- ILogarithmicFunctions.cs
- Origem:
- ILogarithmicFunctions.cs
Calcula o natural (base-E
logaritmo de um 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
O valor cujo logaritmo natural deve ser calculado.
Retornos
O logaritmo natural de x
.
Aplica-se a
Log(TSelf, TSelf)
- Origem:
- ILogarithmicFunctions.cs
- Origem:
- ILogarithmicFunctions.cs
- Origem:
- ILogarithmicFunctions.cs
Calcula o logaritmo de um valor na 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
O valor cujo logaritmo deve ser calculado.
- newBase
- TSelf
A base na qual o logaritmo deve ser calculado.
Retornos
O logaritmo de basenewBase
de x
.