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
51
|
\documentclass{article}
\usepackage{axiom}
\begin{document}
\title{\$SPAD/src/input e02agf.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
showArrayValues true
showScalarValues true
m:=5
kplus1:=5
nrows:=6
xmin:=0.0
xmax:=4.0
x:Matrix SF:=
[[0.5 ,1.0 ,2.0 ,2.5 ,3.0 ]]
y:Matrix SF:=
[[0.03 ,-0.75 ,-1.0 ,-0.1 ,1.75 ]]
w:Matrix SF:=
[[1.0 ,1.0 ,1.0 ,1.0 ,1.0 ]]
mf:=2
xf:Matrix SF:=
[[0.0 ,4.0 ]]
yf:Matrix SF:=
[[1.0 ,-2.0 ,9.0 ,0.0 ,0.0 ,0.0 ,_
0.0 ,0.0 ,0.0 ,0.0 ,0.0 ,0.0 ,_
0.0 ,0.0 ,0.0 ]]
lyf:=15
ip:Matrix Integer:=
[[1 ,0 ]]
lwrk:=200
liwrk:=12
result:=e02agf(m,kplus1,nrows,xmin,xmax,x,y,w,mf,xf,yf,lyf,ip,lwrk,liwrk, -1)
@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}
|