1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
function [Y,X] = sm2sr(A,B,C,D,T,u0,x0);
% [Y,X] = sm2sr(A,B,C,D,T,u0,x0);
% Constrained-state matrix to impulse response.
% A,B,C,D,E - (constrained) state matrices
% T vector of time points
% u0 input gain vector: u = u0*unit step.
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %% Revision 1.1 1996/08/19 15:34:29 peter
% %% Initial revision
% %%
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
[Ny,Nu] = size(D);
|
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
function [Y,X] = sm2sr(A,B,C,D,T,u0,x0);
% [Y,X] = sm2sr(A,B,C,D,T,u0,x0);
% Constrained-state matrix to impulse response.
% A,B,C,D,E - (constrained) state matrices
% T vector of time points
% u0 input gain vector: u = u0*unit step.
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %% Revision 1.2 1996/09/10 16:48:21 peter
% %% Changed ar counts in default settings.
% %%
% %% Revision 1.1 1996/08/19 15:34:29 peter
% %% Initial revision
% %%
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
[Ny,Nu] = size(D);
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
one = eye(Nx);
Y = zeros(N,Ny);
X = zeros(N,Nx);
i = 0;
for t = T'
i=i+1;
if Nx>0
expAt = expm(A*t);
x = ( A\(expAt-one) )*B*u0 + expAt*x0;
X(i,:) = x';
if Ny>0
y = C*x + D*u0;
Y(i,:) = y';
end;
elseif Ny>0
y = D*u0;
|
>
>
>
>
>
<
>
|
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
one = eye(Nx);
Y = zeros(N,Ny);
X = zeros(N,Nx);
dt = T(2)-T(1);% Assumes fixed interval
expAdt = expm(A*dt); % Compute matrix exponential
i = 0;
expAt = one;
for t = T'
i=i+1;
if Nx>0
x = ( A\(expAt-one) )*B*u0 + expAt*x0;
expAt = expAt+expAdt;
X(i,:) = x';
if Ny>0
y = C*x + D*u0;
Y(i,:) = y';
end;
elseif Ny>0
y = D*u0;
|