aboutsummaryrefslogtreecommitdiff
path: root/src/input/leg.input.pamphlet
blob: b495050a5cc425d72713b7fc7ecac4d0aaf985c0 (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
\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}