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.6 1997/08/28 14:07:16 peterg
# Changed MTTDx to MTTDeriv
#
# Revision 1.5 1996/08/24 14:27:29 peter
# Global parameters.
#
## Revision 1.4 1996/08/18 20:02:21 peter
|
>
>
>
>
>
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright (c) P.J.Gawthrop 1991, 1994, 1995, 1996
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.7 1998/05/13 16:43:03 peterg
## Now uses matlab_matrix to write the matrices
## Various bug fixes
## New global generation method
##
# Revision 1.6 1997/08/28 14:07:16 peterg
# Changed MTTDx to MTTDeriv
#
# Revision 1.5 1996/08/24 14:27:29 peter
# Global parameters.
#
## Revision 1.4 1996/08/18 20:02:21 peter
|
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
%Define the common part of the functions.
PROCEDURE common;
BEGIN
write "% Read in the input";
write "u = $1_input(t)";
% write "% Read in the arguments";
% write "$1_args";
write "% Set up the State variables";
FOR i := 1:MTTNx DO
BEGIN
|
|
|
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
%Define the common part of the functions.
PROCEDURE common;
BEGIN
write "% Read in the input";
write "u = $1_input(x,t)";
% write "% Read in the arguments";
% write "$1_args";
write "% Set up the State variables";
FOR i := 1:MTTNx DO
BEGIN
|