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

Arg() public method

Argument of this Complex number (the angle in radians with the x-axis in polar coordinates).
public Arg ( ) : double
return double
        public double Arg()
        {
            return Math.Atan2(_y, _x);
        }