State Space Control
Housekeeping
close all; clear; clc; s = tf('s');
DEFINITIONS & DERIVATION:
Given a system provided by the state equation and the output equation the system can be represented in state-space by the equations
and
where:
A = [0 1; 1 0];
B = [0; 1];
C = [0 1];
D = [0];
E = [0];
F = [0];
sys = ss(A,B,C,D)