Natural logarithm.
  • For positive Double arguments returns a Double: Math.Log(value).
  • For negative Double arguments convert to Complex and return the Complex log: Complex(Math.Log(Math.Abs(value)),Math.PI)
  • For Complex find the complex logarithm: Complex(Math.Log(Math.Abs(value)),Arg(value))

Namespace:  SingularSys.Jep.Functions
Assembly:  Jep (in Jep.dll) Version: 1.1.0.0 (1.0.0)

Syntax

C#
public class NaturalLogarithm : PostfixMathCommand
Visual Basic (Declaration)
Public Class NaturalLogarithm _
	Inherits PostfixMathCommand
Visual C++
public ref class NaturalLogarithm : public PostfixMathCommand

Inheritance Hierarchy

System..::.Object
  SingularSys.Jep.Functions..::.PostfixMathCommand
    SingularSys.Jep.Functions..::.NaturalLogarithm

See Also