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.2 1996/08/24 14:09:41 peter
## Global parameter passing.
##
## Revision 1.1 1996/08/18 12:03:49 peter
## Initial revision
##
###############################################################
|
>
>
>
|
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.3 1996/08/30 11:04:28 peter
## Changed line length to 500.
##
## Revision 1.2 1996/08/24 14:09:41 peter
## Global parameter passing.
##
## Revision 1.1 1996/08/18 12:03:49 peter
## Initial revision
##
###############################################################
|
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
common();
%Fortran switches - one line expressions
OFF echo;
ON fort$
cardno!* := 1$
fortwidth!* := 500$
OFF period$
MTTdx := MTTdx;
SHUT "$1_ode.m";
OFF fort;
% Now do the y = g(x,t) function.
|
|
|
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
common();
%Fortran switches - one line expressions
OFF echo;
ON fort$
cardno!* := 1$
fortwidth!* := 10000$
OFF period$
MTTdx := MTTdx;
SHUT "$1_ode.m";
OFF fort;
% Now do the y = g(x,t) function.
|