cosh 関数。
Inheritance: Unary
Ejemplo n.º 1
0
        protected override Function Differentiate()
        {
            Function cosh = new Cosh(this.inner);

            return((Constant)1 / (cosh * cosh));
        }
Ejemplo n.º 2
0
		protected override Function Differentiate()
		{
			Function cosh = new Cosh(this.inner);
			return (Constant)1 / (cosh * cosh);
		}