diff options
author | dos-reis <gdr@axiomatics.org> | 2007-08-14 05:14:52 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2007-08-14 05:14:52 +0000 |
commit | ab8cc85adde879fb963c94d15675783f2cf4b183 (patch) | |
tree | c202482327f474583b750b2c45dedfc4e4312b1d /src/input/images7.input.pamphlet | |
download | open-axiom-ab8cc85adde879fb963c94d15675783f2cf4b183.tar.gz |
Initial population.
Diffstat (limited to 'src/input/images7.input.pamphlet')
-rw-r--r-- | src/input/images7.input.pamphlet | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/src/input/images7.input.pamphlet b/src/input/images7.input.pamphlet new file mode 100644 index 00000000..0d3ee375 --- /dev/null +++ b/src/input/images7.input.pamphlet @@ -0,0 +1,56 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/src/input images7.input} +\author{The Axiom Team} +\maketitle +\begin{abstract} +\end{abstract} +\eject +\tableofcontents +\eject +\section{License} +<<license>>= +--Copyright The Numerical Algorithms Group Limited 1994. +@ +<<*>>= +<<license>> +-- Color gallery page 7 + +)r conformal + +-- Conformal maps + +-- The map z +-> z + 1/z on the complex plane + +-- The coordinate grid for the complex plane + +f z == z + +conformalDraw(f, -2..2, -2..2, 9, 9, "cartesian") + +f z == z + 1/z + +conformalDraw(f, -2..2, -2..2, 9, 9, "cartesian") + +-- The map z +-> -(z+1)/(z-1) +-- This function maps the unit disk to the right half-plane, as shown +-- on the Riemann sphere. + +-- The unit disk +f z == z +riemannConformalDraw(f, 0.1..0.99, 0..2*%pi, 7, 11, "polar") + +-- The right half-plane +f z == -(z+1)/(z-1) +riemannConformalDraw(f, 0.1..0.99, 0..2*%pi, 7, 11, "polar") + +-- Visualization of the mapping from the complex plane to the Riemann Sphere. +riemannSphereDraw(-4..4, -4..4, 7, 7, "cartesian") + +@ +\eject +\begin{thebibliography}{99} +\bibitem{1} nothing +\end{thebibliography} +\end{document} |