Example of State Space Model Series Connection Using MATLAB
First, write out the four matrices of the two systems separately, then call series() to connect the two systems, and finally test the step signal output result of the connected system. % State space model connection % series() %%%%%%%%%%% clear all; clc; close all; %%%%%%%%%%%%% %%% System 1 A1=[-2.2 -2.3; 0.6 -3.5]; B1=[1;0]; C1=[1.5 1.2]; … Read more