Artifact 072c287e17d3930851ce0bb20533206769e62e15406a79c31d79546a958ab904:
- Executable file mttroot/mtt/bin/trans/m/mtt_write.m — part of check-in [5f62b45e0d] at 1999-03-15 21:57:38 on branch origin/master — Removed the # symbol (user: gawthrop@users.sourceforge.net, size: 437) [annotate] [blame] [check-ins using]
function mtt_write(t,x,y,nx,ny); ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### printf("%e ", t); for i=1:ny printf("%e ", y(i)); endfor printf("%e ", t); for i=1:nx printf("%e ", x(i)); endfor printf("\n"); endfunction