Encog.MathUtil.ComplexNumber.Conj C# (CSharp) 메소드

Conj() 공개 메소드

Complex conjugate of this Complex number (the conjugate of x+i*y is x-i*y).
public Conj ( ) : ComplexNumber
리턴 ComplexNumber
        public ComplexNumber Conj()
        {
            return new ComplexNumber(_x, -_y);
        }