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

Sinh() public method

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

Same methods

ComplexNumber::Sinh ( double theta ) : double