From fa2e448e3866a5184bb206ded9c3816d07a7e1ec Mon Sep 17 00:00:00 2001 From: Rex Ford Date: Tue, 22 Jul 2008 20:27:56 -0400 Subject: [PATCH] eliminated circular dependancies and started documentation --- extra/math/derivatives/derivatives-docs.factor | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 extra/math/derivatives/derivatives-docs.factor diff --git a/extra/math/derivatives/derivatives-docs.factor b/extra/math/derivatives/derivatives-docs.factor new file mode 100644 index 0000000000..23847e82f7 --- /dev/null +++ b/extra/math/derivatives/derivatives-docs.factor @@ -0,0 +1,9 @@ +USING: help.markup help.syntax ; + +IN: math.derivatives + +HELP: derivative ( x function -- m ) +{ $values { "x" "the x-position on the function" } { "function" "a differentiable function" } } +{ $description "Finds the slope of the tangent line at the given x-position on the given function." } ; + +{ derivative-func } related-words