Differences From Artifact [a92181bc6c]:
- Executable file mttroot/mtt/bin/trans/m/mtt_write.m — part of check-in [b5ff3d237b] at 1998-07-25 14:03:50 on branch origin/master — Initial revision (user: gawthrop@users.sourceforge.net, size: 209) [annotate] [blame] [check-ins using]
To Artifact [1f5934a28d]:
- Executable file mttroot/mtt/bin/trans/m/mtt_write.m — part of check-in [7a4bb5b5e8] at 1998-08-12 13:18:31 on branch origin/master — Now in e output format (user: gawthrop@users.sourceforge.net, size: 209) [annotate] [blame] [check-ins using]
1 2 | function mtt_write(t,x,y,nx,ny); | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | function mtt_write(t,x,y,nx,ny); printf("%e ", t); for i=1:ny printf("%e ", y(i)); end printf("# "); printf("%e ", t); for i=1:nx printf("%e ", x(i)); end printf("\n"); endfunction |