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

ComplexNumber() public method

Create a complex number from another complex number.
public ComplexNumber ( ComplexNumber other ) : System
other ComplexNumber The other complex number.
return System
        public ComplexNumber(ComplexNumber other)
        {
            _x = other.Real;
            _y = other.Imaginary;
        }

Same methods

ComplexNumber::ComplexNumber ( double u, double v ) : System