File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ There are a few basic approaches to using the Calculus package:
3131
3232## Direct Finite Differencing
3333
34- require("Calculus")
3534 using Calculus
3635
3736 # Compare with cos(0.0)
@@ -64,7 +63,6 @@ There are a few basic approaches to using the Calculus package:
6463
6564## Higher-Order Functions
6665
67- require("Calculus")
6866 using Calculus
6967
7068 g1 = derivative(x -> sin(x))
@@ -94,7 +92,6 @@ derivatives as well. This operator can be used abritratily many times, but you
9492should keep in mind that the approximation degrades with each approximate
9593derivative you calculate:
9694
97- require("Calculus")
9895 using Calculus
9996
10097 f(x) = sin(x)
@@ -104,7 +101,6 @@ derivative you calculate:
104101
105102## Integration using Simpson's Rule
106103
107- require("Calculus")
108104 using Calculus
109105
110106 # Compare with log(2)
@@ -115,7 +111,6 @@ derivative you calculate:
115111
116112## Symbolic Differentiation
117113
118- require("Calculus")
119114 using Calculus
120115
121116 differentiate("cos(x) + sin(x) + exp(-x) * cos(x)", :x)
You can’t perform that action at this time.
0 commit comments