Encog.MathUtil.ComplexNumber.Log C# (CSharp) Method

Log() public method

Principal branch of the Complex logarithm of this Complex number. (doesn't change this Complex number). The principal branch is the branch with -pi less arg les-equals pi.
public Log ( ) : ComplexNumber
return ComplexNumber
        public ComplexNumber Log()
        {
            return new ComplexNumber(Math.Log(Mod()), Arg());
        }