diff options
Diffstat (limited to 'src/input/leg.input.pamphlet')
-rw-r--r-- | src/input/leg.input.pamphlet | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/input/leg.input.pamphlet b/src/input/leg.input.pamphlet new file mode 100644 index 00000000..b495050a --- /dev/null +++ b/src/input/leg.input.pamphlet @@ -0,0 +1,30 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/src/input leg.input} +\author{The Axiom Team} +\maketitle +\begin{abstract} +\end{abstract} +\eject +\tableofcontents +\eject +\section{License} +<<license>>= +--Copyright The Numerical Algorithms Group Limited 1991. +@ +<<*>>= +<<license>> + +-- Legendre Polynomials +)clear all +p(n | n=0) == 1 +p(n | n=1) == x +p(n | n>1) == ((2*n-1)*x*p(n-1)-(n-1)*p(n-2))/n +p 3 +@ +\eject +\begin{thebibliography}{99} +\bibitem{1} nothing +\end{thebibliography} +\end{document} |