From ab5800f8df9b56f3488bbf93e932986f92f542f2 Mon Sep 17 00:00:00 2001 From: rened Date: Thu, 7 Feb 2013 09:47:41 +0100 Subject: [PATCH] remove require("Calculus.jl") no longer needed, "using" is enough for installed packages. --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index ba7f264..9b87767 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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)) @@ -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) @@ -104,7 +101,6 @@ derivative you calculate: ## Integration using Simpson's Rule - require("Calculus") using Calculus # Compare with log(2) @@ -115,7 +111,6 @@ derivative you calculate: ## Symbolic Differentiation - require("Calculus") using Calculus differentiate("cos(x) + sin(x) + exp(-x) * cos(x)", :x)