Encog.MathUtil.ComplexNumber.Arg C# (CSharp) Метод

Arg() публичный Метод

Argument of this Complex number (the angle in radians with the x-axis in polar coordinates).
public Arg ( ) : double
Результат double
        public double Arg()
        {
            return Math.Atan2(_y, _x);
        }