Skip to content

Commit cb58e8a

Browse files
Merge pull request #5 from rened/patch-1
remove require("Calculus.jl")
2 parents 847ccf1 + ab5800f commit cb58e8a

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff 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
9492
should keep in mind that the approximation degrades with each approximate
9593
derivative 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)

0 commit comments

Comments
 (0)