10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright (c) P.J.Gawthrop 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 1998/01/22 13:16:16 peterg
## Initial revision
##
###############################################################
# Inform user
|
>
>
>
>
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright (c) P.J.Gawthrop 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.2 1998/01/23 09:30:36 peterg
## Fixed a sign error - the coeficients of a(s) appear with - signs in
## the A_c matrix!
##
## Revision 1.1 1998/01/22 13:16:16 peterg
## Initial revision
##
###############################################################
# Inform user
|
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
write "% - Gain matrix - physical form";
MTT_Matrix := MTTK$
MTT_Matrix_name := "MTTK"$
MTT_Matrix_n := MTTNu$
MTT_Matrix_m := MTTNx$
Reduce_Matrix()$
SHUT "$1_ssk.r";
quit;
EOF
# Now invoke the standard error handling.
mtt_error_r smc2ssk_r.log
|
>
>
|
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
write "% - Gain matrix - physical form";
MTT_Matrix := MTTK$
MTT_Matrix_name := "MTTK"$
MTT_Matrix_n := MTTNu$
MTT_Matrix_m := MTTNx$
Reduce_Matrix()$
write "END;";
SHUT "$1_ssk.r";
quit;
EOF
# Now invoke the standard error handling.
mtt_error_r smc2ssk_r.log
|