aboutsummaryrefslogtreecommitdiff
path: root/src/input/errortrap.input.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2007-08-14 05:14:52 +0000
committerdos-reis <gdr@axiomatics.org>2007-08-14 05:14:52 +0000
commitab8cc85adde879fb963c94d15675783f2cf4b183 (patch)
treec202482327f474583b750b2c45dedfc4e4312b1d /src/input/errortrap.input.pamphlet
downloadopen-axiom-ab8cc85adde879fb963c94d15675783f2cf4b183.tar.gz
Initial population.
Diffstat (limited to 'src/input/errortrap.input.pamphlet')
-rw-r--r--src/input/errortrap.input.pamphlet46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/input/errortrap.input.pamphlet b/src/input/errortrap.input.pamphlet
new file mode 100644
index 00000000..0a5416c9
--- /dev/null
+++ b/src/input/errortrap.input.pamphlet
@@ -0,0 +1,46 @@
+\documentclass{article}
+\usepackage{axiom}
+\begin{document}
+\title{\$SPAD/src/input errortrap.input}
+\author{The Axiom Team}
+\maketitle
+\begin{abstract}
+\end{abstract}
+\eject
+\tableofcontents
+\eject
+\section{License}
+<<license>>=
+--Copyright The Numerical Algorithms Group Limited 1996.
+@
+<<*>>=
+<<license>>
+)clear all
+-- examples that test the error traps when graphing functions
+
+draw(1/x, x = 0.0..2.0, adaptive == false)
+
+draw(asec x, x = -2..2, clip == [-2..2, -4..4])
+
+draw(asin x, x = -2..2)
+
+draw(curve(cos(1/x), sin(1/x)), x = -2..2, adaptive == false)
+
+draw(curve(5*cos(x), 5*sin(x), asec(x)), x = -12..12)
+
+draw(curve(cos(x), sin(x), 1/x), x = 0.0..1.0)
+
+draw(asec(x*y), x = -2..2, y = -2..2)
+
+f(x,y) == asec(x)*asec(y)
+draw(f, -2..2, -2..2)
+
+draw(surface(u*acsc(v), u*asec(v), v*acsc(u)), u=-2..2, v=-2..2)
+
+draw(curve(acsc(x), asec(x), x), x = -2..2, tubeRadius == .3)
+@
+\eject
+\begin{thebibliography}{99}
+\bibitem{1} nothing
+\end{thebibliography}
+\end{document}