Overview
Comment: | Moved include files |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
de96e54ef300ad9a98680c8ccd427017 |
User & Date: | gawthrop@users.sourceforge.net on 2000-08-01 09:30:16 |
Other Links: | branch diff | manifest | tags |
Context
2000-08-01
| ||
09:33:28 |
Include mtt_solve_lud within scope of this function - seems to avaoid probs with p2c check-in: 83c3d143e1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
09:30:16 | Moved include files check-in: de96e54ef3 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
07:34:33 | Replaced printf by echo check-in: ece6b23214 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/p/mtt_solve_lud.p from [5a83c53fd8] to [ec0698602b].
1 2 3 4 5 | PROCEDURE mtt_solve_lud(VAR x : StateVector; A : StateMatrix; B : StateVector; n : integer); | < < < > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | PROCEDURE mtt_solve_lud(VAR x : StateVector; A : StateMatrix; B : StateVector; n : integer); { Linear equation solution via LU factorisation % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % $Id$ % % $Log$ % % Revision 1.3 1999/10/26 23:37:20 peterg % % Put include files here. % % % % Revision 1.2 1998/08/17 15:56:10 peterg % % Uses LU decomposition - much faster than SVD when N>100 % % % % Revision 1.1 1998/08/17 12:52:16 peterg % % Initial revision % % % % Revision 1.1 1998/08/17 12:41:37 peterg |
︙ | ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 | } VAR i : integer; d : real; Index : StateVector; BEGIN{mtt_solve_lud} (* decompose matrix A using LU decomposition *) mtt_ludcmp(A,n,Index,d); (* backsubstitute for B *) mtt_lubksb(A,n,Index,B); | > > > | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | } VAR i : integer; d : real; Index : StateVector; (*$I $MTTPATH/trans/p/mtt_ludcmp.p *) (*$I $MTTPATH/trans/p/mtt_lubksb.p *) BEGIN{mtt_solve_lud} (* decompose matrix A using LU decomposition *) mtt_ludcmp(A,n,Index,d); (* backsubstitute for B *) mtt_lubksb(A,n,Index,B); |
︙ | ︙ |