This method returns the supplied OracleDecimal structure with its value set to the logarithm of the supplied OracleDecimal structure in the supplied base.
Declaration
// C# public static OracleDecimal Log(OracleDecimal val, int logBase);
Parameters
val
An OracleDecimal structure whose logarithm is to be calculated.
logBase
An int that specifies the base of the logarithm.
Return Value
A new OracleDecimal structure with its value set to the logarithm of val in the supplied base.
Exceptions
ArgumentOutOfRangeException - Either argument is less than zero.
Remarks
If either argument has a null value, the returned OracleDecimal has a null value.
If both arguments have zero value, the result is undefined, and the returned OracleDecimal structure has a null value.