Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ There are a few basic approaches to using the Calculus package:

## Direct Finite Differencing

require("Calculus")
using Calculus

# Compare with cos(0.0)
Expand Down Expand Up @@ -64,7 +63,6 @@ There are a few basic approaches to using the Calculus package:

## Higher-Order Functions

require("Calculus")
using Calculus

g1 = derivative(x -> sin(x))
Expand Down Expand Up @@ -94,7 +92,6 @@ derivatives as well. This operator can be used abritratily many times, but you
should keep in mind that the approximation degrades with each approximate
derivative you calculate:

require("Calculus")
using Calculus

f(x) = sin(x)
Expand All @@ -104,7 +101,6 @@ derivative you calculate:

## Integration using Simpson's Rule

require("Calculus")
using Calculus

# Compare with log(2)
Expand All @@ -115,7 +111,6 @@ derivative you calculate:

## Symbolic Differentiation

require("Calculus")
using Calculus

differentiate("cos(x) + sin(x) + exp(-x) * cos(x)", :x)
Expand Down