cosh 関数。
Inheritance: Unary
コード例 #1
0
ファイル: Exp.cs プロジェクト: tppApe/UfcppSample
        protected override Function Differentiate()
        {
            Function cosh = new Cosh(this.inner);

            return((Constant)1 / (cosh * cosh));
        }
コード例 #2
0
ファイル: Exp.cs プロジェクト: ufcpp/UfcppSample
		protected override Function Differentiate()
		{
			Function cosh = new Cosh(this.inner);
			return (Constant)1 / (cosh * cosh);
		}