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

Sin() public method

Sine of this Complex number (doesn't change this Complex number). sin(z) = (exp(i*z)-exp(-i*z))/(2*i).
public Sin ( ) : ComplexNumber
return ComplexNumber
        public ComplexNumber Sin()
        {
            return new ComplexNumber(Cosh(_y)*Math.Sin(_x), Sinh(_y)*Math.Cos(_x));
        }