1
2
3
4
5
6
7
8
9
10
|
function [ol_poles,cl_poles,ol_zeros,cl_zeros,k_x,k_w,K_x,K_w,cond_uu] = ppp_lin_plot (A,B,C,D,A_u,A_w,t,Q,W,x_0)
## usage: [ol_poles,cl_poles,ol_zeros,cl_zeros,k_x,k_w,K_x,K_w] = ppp_lin_plot (A,B,C,D,A_u,A_w,t,Q,W,x_0)
##
## Linear PPP (Predictive pole-placement) computation with plotting
## INPUTS:
## A,B,C,D: system matrices
## A_u: composite system matrix for U* generation
## one square matrix (A_ui) row for each system input
## each A_ui generates U*' for ith system input.
|
|
|
1
2
3
4
5
6
7
8
9
10
|
function [ol_poles,cl_poles,ol_zeros,cl_zeros,k_x,k_w,K_x,K_w,cond_uu] = ppp_lin_plot (A,B,C,D,A_u,A_w,t,Q,W,x_0)
## usage: [ol_poles,cl_poles,ol_zeros,cl_zeros,k_x,k_w,K_x,K_w,cond_uu] = ppp_lin_plot (A,B,C,D,A_u,A_w,t,Q,W,x_0)
##
## Linear PPP (Predictive pole-placement) computation with plotting
## INPUTS:
## A,B,C,D: system matrices
## A_u: composite system matrix for U* generation
## one square matrix (A_ui) row for each system input
## each A_ui generates U*' for ith system input.
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
endif
[n_t,m_t] = size(t);
## Default Q
if nargin<8
Q = ones(n_y,1);
endif
## Default W
if nargin<9
W = ones(n_W,1)
endif
|
|
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
endif
[n_t,m_t] = size(t);
## Default Q
if nargin<8
Q = ones(n_y,1)
endif
## Default W
if nargin<9
W = ones(n_W,1)
endif
|