10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright (c) P.J.Gawthrop 1991, 1994, 1995, 1996
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.8 1998/02/25 18:03:49 peterg
## Removed the argument reading bits.
##
## Revision 1.7 1997/08/29 07:58:17 peterg
## Changed MTT to mtt in the .m files.
##
# Revision 1.6 1997/01/05 19:34:35 peterg
|
>
>
>
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright (c) P.J.Gawthrop 1991, 1994, 1995, 1996
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.9 1998/03/30 14:18:07 peterg
## Removed NERO command
##
## Revision 1.8 1998/02/25 18:03:49 peterg
## Removed the argument reading bits.
##
## Revision 1.7 1997/08/29 07:58:17 peterg
## Changed MTT to mtt in the .m files.
##
# Revision 1.6 1997/01/05 19:34:35 peterg
|
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
BEGIN
IF i<MTTNvar THEN write MTTVar(i,1), " ..."
ELSE write MTTVar(i,1), ";"
END;
END;
write "% Read in the input";
write "u = $1_input(t)";
write "% Read in the definitions";
write "[nx,ny,nu,nz,nyz] = $1_def";
% write "% Read in the arguments";
% write "$1_args";
|
|
|
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
BEGIN
IF i<MTTNvar THEN write MTTVar(i,1), " ..."
ELSE write MTTVar(i,1), ";"
END;
END;
write "% Read in the input";
write "u = $1_input(x,t)";
write "% Read in the definitions";
write "[nx,ny,nu,nz,nyz] = $1_def";
% write "% Read in the arguments";
% write "$1_args";
|