Single.Log Méthode

Définition

Surcharges

Log(Single, Single)

Calcule le logarithme d’une valeur dans la base spécifiée.

Log(Single)

Calcule le logarithme naturel (base-E logarithme) d’une valeur.

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.

Implémente

S’applique à