NFloat.Log Méthode

Définition

Surcharges

Log(NFloat)

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

Log(NFloat, NFloat)

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

Log(NFloat)

Source:
NFloat.cs
Source:
NFloat.cs
Source:
NFloat.cs

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

public:
 static System::Runtime::InteropServices::NFloat Log(System::Runtime::InteropServices::NFloat x) = System::Numerics::ILogarithmicFunctions<System::Runtime::InteropServices::NFloat>::Log;
public static System.Runtime.InteropServices.NFloat Log (System.Runtime.InteropServices.NFloat x);
static member Log : System.Runtime.InteropServices.NFloat -> System.Runtime.InteropServices.NFloat
Public Shared Function Log (x As NFloat) As NFloat

Paramètres

x
NFloat

Valeur dont le logarithme naturel doit être calculé.

Retours

Logarithme népérien de x.

Implémente

S’applique à

Log(NFloat, NFloat)

Source:
NFloat.cs
Source:
NFloat.cs
Source:
NFloat.cs

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

public:
 static System::Runtime::InteropServices::NFloat Log(System::Runtime::InteropServices::NFloat x, System::Runtime::InteropServices::NFloat newBase) = System::Numerics::ILogarithmicFunctions<System::Runtime::InteropServices::NFloat>::Log;
public static System.Runtime.InteropServices.NFloat Log (System.Runtime.InteropServices.NFloat x, System.Runtime.InteropServices.NFloat newBase);
static member Log : System.Runtime.InteropServices.NFloat * System.Runtime.InteropServices.NFloat -> System.Runtime.InteropServices.NFloat
Public Shared Function Log (x As NFloat, newBase As NFloat) As NFloat

Paramètres

x
NFloat

Valeur dont le logarithme doit être calculé.

newBase
NFloat

Base dans laquelle le logarithme doit être calculé.

Retours

Logarithme de basenewBase de x.

Implémente

S’applique à