ILogarithmicFunctions<TSelf>.Log Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
Log(TSelf) |
Calcule le logarithme naturel ( |
Log(TSelf, TSelf) |
Calcule le logarithme d’une valeur dans la base spécifiée. |
Log(TSelf)
- Source:
- ILogarithmicFunctions.cs
- Source:
- ILogarithmicFunctions.cs
- Source:
- ILogarithmicFunctions.cs
Calcule le logarithme naturel (base-E
logarithme) d’une valeur.
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
Paramètres
- x
- TSelf
Valeur dont le logarithme naturel doit être calculé.
Retours
Logarithme népérien de x
.
S’applique à
Log(TSelf, TSelf)
- Source:
- ILogarithmicFunctions.cs
- Source:
- ILogarithmicFunctions.cs
- Source:
- ILogarithmicFunctions.cs
Calcule le logarithme d’une valeur dans la base spécifiée.
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
Paramètres
- x
- TSelf
Valeur dont le logarithme doit être calculé.
- newBase
- TSelf
Base dans laquelle le logarithme doit être calculé.
Retours
Logarithme de basenewBase
de x
.