11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright (c) P.J.Gawthrop 1991, 1992, 1994, 1995, 1996.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
###############################################################
#Inform user
echo Creating $1_obs.r
# Remove the old log file
rm -f ode2obs_r.log
# Use reduce to accomplish the transformation
reduce >ode2obs_r.log << EOF
OFF Echo;
OFF Nat;
ON NERO;
in "$1_def.r";
MTTdxs := MTTdX; %Save the symbolic form of dX
|
>
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright (c) P.J.Gawthrop 1991, 1992, 1994, 1995, 1996.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 1996/08/25 08:37:44 peter
## Initial revision
##
###############################################################
#Inform user
echo Creating $1_obs.r
# Remove the old log file
rm -f ode2obs_r.log
# Use reduce to accomplish the transformation
reduce >ode2obs_r.log << EOF
OFF Echo;
OFF Nat;
ON NERO;
in "$1_def.r";
MTTdxs := MTTdX; %Save the symbolic form of dX
|