1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
PROCEDURE lubksb(a: StateMatrix; n: INTEGER; indx: StateVector; VAR b: StateVector);
{
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
###############################################################
}
(* Programs using LUBKSB must define the types
TYPE
glnarray = ARRAY [1..n] OF real;
|
|
>
>
>
>
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
PROCEDURE mtt_lubksb(a: StateMatrix; n: INTEGER; indx: StateVector; VAR b: StateVector);
{ This file is derived from the NUMERICAL RECIPES PASCAL SHAREWARE DISKETTE.
Please read the README file in $MTTPATH/trans/p
}
{
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 1998/08/17 12:58:16 peterg
## Initial revision
##
###############################################################
}
(* Programs using LUBKSB must define the types
TYPE
glnarray = ARRAY [1..n] OF real;
|