Overview
Comment: | Removed the # symbol |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
5f62b45e0de908fc516693899bf3ba3b |
User & Date: | gawthrop@users.sourceforge.net on 1999-03-15 21:57:38 |
Other Links: | branch diff | manifest | tags |
Context
1999-03-15
| ||
22:42:52 | Strip comments (put in by Octave save function) check-in: f8ce367af5 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
21:57:38 | Removed the # symbol check-in: 5f62b45e0d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
21:55:36 |
Does away with the # symbol in the file - uses _de to get Nx Ny instead check-in: 1d58fa5dab user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/m/mtt_write.m from [1f5934a28d] to [072c287e17].
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | + + + + + + + + - + - - + | function mtt_write(t,x,y,nx,ny); ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### printf("%e ", t); for i=1:ny printf("%e ", y(i)); |
Modified mttroot/mtt/bin/trans/p/mtt_write.p from [d53e1154dd] to [e259772c46].
︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + + + | P.J. Gawthrop July 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.4 1998/11/26 13:31:30 peterg ## Put missing space after 2nd t ## ## Revision 1.3 1998/07/25 20:41:38 peterg ## Spaces between numbers ## ## Revision 1.2 1998/07/25 14:04:14 peterg ## Changed format ## ## Revision 1.1 1998/07/25 09:47:25 peterg |
︙ | |||
33 34 35 36 37 38 39 | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | - | VAR i : INTEGER; BEGIN write(t," "); FOR i := 1 TO ny DO write(y[i]," "); |