1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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));
end
endfor
printf("# ");
printf("%e ", t);
for i=1:nx
printf("%e ", x(i));
end
endfor
printf("\n");
endfunction
|