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

Cosh() public method

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

Same methods

ComplexNumber::Cosh ( double theta ) : double