Double.Log 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Log(Double, Double) |
計算指定基底中值的對數。 |
Log(Double) |
計算值的自然 ( |
Log(Double, Double)
- 來源:
- Double.cs
- 來源:
- Double.cs
- 來源:
- Double.cs
計算指定基底中值的對數。
public:
static double Log(double x, double newBase) = System::Numerics::ILogarithmicFunctions<double>::Log;
public static double Log (double x, double newBase);
static member Log : double * double -> double
Public Shared Function Log (x As Double, newBase As Double) As Double
參數
- x
- Double
要計算其對數的值。
- newBase
- Double
要計算對數的基底。
傳回
的基數 newBase
對數 x
。
實作
適用於
Log(Double)
- 來源:
- Double.cs
- 來源:
- Double.cs
- 來源:
- Double.cs
計算值的自然 (base-E
對數。
public:
static double Log(double x) = System::Numerics::ILogarithmicFunctions<double>::Log;
public static double Log (double x);
static member Log : double -> double
Public Shared Function Log (x As Double) As Double
參數
- x
- Double
要計算其自然對數的值。
傳回
x
的自然對數。