15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
echo Creating $1_ir.m
echo Creating $1_iro.m
rm -f sm2ir_m.log
rm -f $1_ir.m
rm -f $1_iro.m
rm -f mtt_error
if [ "$2" = "" ];
then
PARAMS='T=[0:0.1:10];u0=ones(nu,1);x0=zeros(nx,1);'
echo Using default parameter $PARAMS
else
PARAMS=$2;
fi
# PARAMS="$PARAMS ;"
$MATRIX << EOF > sm2ir_m.log 2>mtt_error.txt
% Read in the numeric system parameters
$1_numpar;
[nx,ny,nu,nz,nyz] = $1_def;
t=0; %Just in case it appears in the parameter list.
$PARAMS
%Defaults
|
|
|
|
|
|
|
|
|
|
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
echo Creating $1_ir.m
echo Creating $1_iro.m
rm -f sm2ir_m.log
rm -f $1_ir.m
rm -f $1_iro.m
rm -f mtt_error
# if [ "$2" = "" ];
# then
# PARAMS='T=[0:0.1:10];u0=ones(nu,1);x0=zeros(nx,1);'
# echo Using default parameter $PARAMS
# else
# PARAMS=$2;
# fi
# PARAMS="$PARAMS ;"
$MATRIX << EOF > sm2ir_m.log 2>mtt_error.txt
% Read in the numeric system parameters
mttpar = $1_numpar;
[nx,ny,nu,nz,nyz] = $1_def;
t=0; %Just in case it appears in the parameter list.
$PARAMS
%Defaults
|
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
[n,m]=size(T);
if m>n
T=T';
end;
[A,B,C,D] = $1_sm;
[y,x] = sm2ir(A,B,C,D,T,u0,x0);
if nx>0
write_matrix([T x], '$1_ir');
end;
if ny>0
write_matrix([T y], '$1_iro');
|
|
|
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
[n,m]=size(T);
if m>n
T=T';
end;
[A,B,C,D] = $1_sm(mttpar);
[y,x] = sm2ir(A,B,C,D,T,u0,x0);
if nx>0
write_matrix([T x], '$1_ir');
end;
if ny>0
write_matrix([T y], '$1_iro');
|