Skip to content

Commit 5990acf

Browse files
committed
Added missed semicolumn to exp in derivatives list, fixed unit-tests.
1 parent 362f6c3 commit 5990acf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MathExpressions.NET/Helper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static void InitDefaultDerivatives()
4949
derivatives.AppendLine("cosh(f(x))' = f(x)' * sinh(x);");
5050
derivatives.AppendLine("asinh(f(x))' = f(x)' / sqrt(f(x) ^ 2 + 1);");
5151
derivatives.AppendLine("acosh(f(x))' = f(x)' / sqrt(f(x) ^ 2 - 1);");
52-
derivatives.AppendLine("exp(f(x))' = exp(f(x)) * f(x)'");
52+
derivatives.AppendLine("exp(f(x))' = exp(f(x)) * f(x)';");
5353
derivatives.AppendLine("ln(f(x))' = f(x)' / f(x);");
5454
derivatives.AppendLine("log(f(x), g(x))' = (ln(f(x)) * g(x)' / g(x) - f(x)' * ln(g(x)) / f(x)) / ln(f(x)) ^ 2;");
5555
derivatives.AppendLine("abs(f(x))' = 1;");

0 commit comments

Comments
 (0)