Overview
| Comment: | Now in e output format |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
7a4bb5b5e89983399b9f67432890be10 |
| User & Date: | gawthrop@users.sourceforge.net on 1998-08-12 13:18:31.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1998-08-12
| ||
| 14:14:18 | Added pretty heading and explicitly include p2c header. check-in: 210345de18 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 13:18:31 | Now in e output format check-in: 7a4bb5b5e8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 12:29:18 | Put back some of the args stuff -- needed for plots. check-in: 3ea3262836 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/m/mtt_write.m
from [a92181bc6c]
to [1f5934a28d].
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
|