Encog.MathUtil.ComplexNumber.Arg C# (CSharp) Méthode

Arg() public méthode

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