Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
474c15ca50108da501cfc1efa6519225 |
User & Date: | gawthrop@users.sourceforge.net on 1998-07-30 11:27:33 |
Other Links: | branch diff | manifest | tags |
Context
1998-07-30
| ||
11:29:54 | Added implicit integration stuff check-in: cd5672e5b9 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:27:33 | Initial revision check-in: 474c15ca50 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:49:55 | Removed zeroing. check-in: c9711f7962 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/p/zeros.p version [e8ec334d34].
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | PROCEDURE zeros(VAR A : StateMatrix; N : INTEGER); VAR i,j : INTEGER; BEGIN FOR i:=1 TO N DO FOR j:=1 TO N DO A[i,j] = 0.0; END; |