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

Sinh() 공개 메소드

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

Same methods

ComplexNumber::Sinh ( double theta ) : double