aboutsummaryrefslogtreecommitdiff
path: root/src/input/drawx.input.pamphlet
blob: 7d8f2e0bf2120f706c2e6d4b824003fa6c9bbbfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
\documentclass{article}
\usepackage{axiom}
\begin{document}
\title{\$SPAD/src/input drawx.input}
\author{The Axiom Team}
\maketitle
\begin{abstract}
\end{abstract}
\eject
\tableofcontents
\eject
\section{License}
<<license>>=
--Copyright The Numerical Algorithms Group Limited 1991.
@
<<*>>=
<<license>>

)clear all

--Plotting Two Dimensional Functions of One Variable
draw(sin(tan(x))-tan(sin(x)),x=0..6)
draw(sin(tan(x))-tan(sin(x)),x=0..6,unit == [1.0,0.5],toScale == true)

--Plotting Two Dimensional Parametric Plane Curves
draw(curve(9*sin(3*t/4),8*sin(t)),t=-4*%pi..4*%pi)
draw(curve(9*sin(3*t/4),8*sin(t)),t=-4*%pi..4*%pi,coordinates == polar)

--Plotting Three Dimensional Parametric Space Curves
draw(curve(cos(t),sin(t),t),t=0..6)
draw(curve(cos(t),sin(t),t),t=0..6,tubeRadius == .35,tubePoints == 8)

--Plotting Three Dimensional Functions of Two Variables
draw(cos(x*y),x = -3..3, y = -3..3)
l(x:DoubleFloat,y:DoubleFloat):DoubleFloat == cos(x*y)
colorFxn(x:DoubleFloat,y:DoubleFloat):DoubleFloat == 1/(x**2 + y**2 + 1)
draw(cos(x*y),x = -3..3, y = -3..3, colorFunction == colorFxn)

--Plotting Three Dimensional Parametric Surfaces
draw(surface(u*cos(v),u*sin(v),v*cos(u)),u=-4..4,v=0..2*%pi)
l(x:DoubleFloat,y:DoubleFloat):DoubleFloat == cos(x*y)
colorFxn(x:DoubleFloat,y:DoubleFloat):DoubleFloat == 1/(x**2 + y**2 + 1)
draw(cos(x*y),x = -3..3, y = -3..3, colorFunction == colorFxn)

@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}