Simulink Control Design™ - MathWorks

(Tuis.) #1
I2 = I2(1:3:end);

Gr = G(:,:,I1,I2);
size(Gr)

5x2 array of state-space models.
Each model has 5 outputs, 1 inputs, and 4 states.

The new sampling grid, Gr, has a more economical size of 5-by-2. Simulate the reduced
model and check its fidelity in reproducing the original behavior.

Change directory to a writable directory since model would need to be recompiled

cwd = pwd;
cd(tempdir)
lpvblk = 'scdairframeLPV/LPV System';
set_param(lpvblk,...
'sys','Gr',...
'uOffset','uOffset(:,:,I1,I2)',...
'yOffset','yOffset(:,:,I1,I2)',...
'xOffset','xOffset(:,:,I1,I2)',...
'dxOffset','dxOffset(:,:,I1,I2)')
sim('scdairframeLPV')
cd(cwd)

3 Batch Linearization

Free download pdf