We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88370c6 commit 4548c22Copy full SHA for 4548c22
src/differentiate.jl
@@ -161,9 +161,9 @@ symbolic_derivative_1arg_list = [
161
( :asech, :( -1 / x / sqrt(1 - x^2) ))
162
( :acsch, :( -1 / abs(x) / sqrt(1 + x^2) ))
163
( :acoth, :( 1 / (1 - x^2) ))
164
- ( :erf, :( 2 * exp(-square(x)) / sqrt(pi) ))
165
- ( :erfc, :( -2 * exp(-square(x)) / sqrt(pi) ))
166
- ( :erfi, :( 2 * exp(square(x)) / sqrt(pi) ))
+ ( :erf, :( 2 * exp(-x*x) / sqrt(pi) ))
+ ( :erfc, :( -2 * exp(-x*x) / sqrt(pi) ))
+ ( :erfi, :( 2 * exp(x*x) / sqrt(pi) ))
167
( :gamma, :( digamma(x) * gamma(x) ))
168
( :lgamma, :( digamma(x) ))
169
( :digamma, :( polygamma(1, x) ))
0 commit comments