From 95cc30fac76d0739ba0853baba6e07618d769f71 Mon Sep 17 00:00:00 2001 From: Godisemo Date: Mon, 22 May 2017 14:24:41 +0200 Subject: [PATCH] =?UTF-8?q?Add=20differentiation=20rule=20for=20=E2=88=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/differentiate.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/differentiate.jl b/src/differentiate.jl index 94e2138..2a63b4e 100644 --- a/src/differentiate.jl +++ b/src/differentiate.jl @@ -114,6 +114,7 @@ end symbolic_derivative_1arg_list = [ ( :sqrt, :( 1 / 2 / sqrt(x) )) + ( :√, :( 1 / 2 / √(x) )) ( :cbrt, :( 1 / 3 / cbrt(x)^2 )) ( :abs2, :( 1 * 2 * x )) ( :inv, :( -1 * abs2(inv(x)) ))