Half.Log Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Log(Half) |
Computes the natural ( |
Log(Half, Half) |
Computes the logarithm of a value in the specified base. |
Log(Half)
- Source:
- Half.cs
- Source:
- Half.cs
- Source:
- Half.cs
Computes the natural (base-E
logarithm of a value.
public:
static Half Log(Half x) = System::Numerics::ILogarithmicFunctions<Half>::Log;
public static Half Log (Half x);
static member Log : Half -> Half
Public Shared Function Log (x As Half) As Half
Parameters
- x
- Half
The value whose natural logarithm is to be computed.
Returns
The natural logarithm of x
.
Implements
Applies to
Log(Half, Half)
- Source:
- Half.cs
- Source:
- Half.cs
- Source:
- Half.cs
Computes the logarithm of a value in the specified base.
public:
static Half Log(Half x, Half newBase) = System::Numerics::ILogarithmicFunctions<Half>::Log;
public static Half Log (Half x, Half newBase);
static member Log : Half * Half -> Half
Public Shared Function Log (x As Half, newBase As Half) As Half
Parameters
- x
- Half
The value whose logarithm is to be computed.
- newBase
- Half
The base in which the logarithm is to be computed.
Returns
The base-newBase
logarithm of x
.