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

Cosh() private static method

Real cosh function (used to compute complex trig functions).
private static Cosh ( double theta ) : double
theta double The argument.
return double
        private static double Cosh(double theta)
        {
            return (Math.Exp(theta) + Math.Exp(-theta))/2;
        }

Same methods

ComplexNumber::Cosh ( ) : ComplexNumber