Single.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(Single, Single) |
Calcule le logarithme d’une valeur dans la base spécifiée. |
Log(Single) |
Calcule le logarithme naturel ( |
Log(Single, Single)
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
Calcule le logarithme d’une valeur dans la base spécifiée.
public:
static float Log(float x, float newBase) = System::Numerics::ILogarithmicFunctions<float>::Log;
public static float Log (float x, float newBase);
static member Log : single * single -> single
Public Shared Function Log (x As Single, newBase As Single) As Single
Paramètres
- x
- Single
Valeur dont le logarithme doit être calculé.
- newBase
- Single
Base dans laquelle le logarithme doit être calculé.
Retours
Logarithme de basenewBase
de x
.
Implémente
S’applique à
Log(Single)
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
Calcule le logarithme naturel (base-E
logarithme) d’une valeur.
public:
static float Log(float x) = System::Numerics::ILogarithmicFunctions<float>::Log;
public static float Log (float x);
static member Log : single -> single
Public Shared Function Log (x As Single) As Single
Paramètres
- x
- Single
Valeur dont le logarithme naturel doit être calculé.
Retours
Logarithme népérien de x
.