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

Cosh() 공개 메소드

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

Same methods

ComplexNumber::Cosh ( double theta ) : double