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
|
\documentclass{article}
\usepackage{axiom}
\begin{document}
\title{\$SPAD/src/input f07aef.input}
\author{The Axiom Team}
\maketitle
\begin{abstract}
\end{abstract}
\eject
\tableofcontents
\eject
\section{License}
<<license>>=
--Copyright The Numerical Algorithms Group Limited 1994.
@
<<*>>=
<<license>>
)clear all
showArrayValues true
showScalarValues true
trans:="N"
n:=4
nrhs:=2
a:Matrix SF:=
[[5.25 ,-2.95 ,-0.95 ,-3.8 ],_
[0.34 ,3.89 ,2.38 ,0.41 ],_
[0.3 ,-0.46 ,-1.51 ,0.29 ],_
[-0.21 ,-0.33 ,0.01 ,1.13 ]]
lda:=4
ipiv:Matrix Integer:=
[[2 ,2 ,3 ,4 ]]
ldb:=4
b:Matrix SF:=
[[9.52 ,18.47 ],_
[24.35 ,2.25 ],_
[0.77 ,-13.3 ],_
[-6.22 ,-6.21 ]]
result:=f07aef(trans,n,nrhs,a,lda,ipiv,ldb,b)
@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}
|