%RT I Serie 3 Aufgabe 1 (Marco & Bryan) clc; close all; clear all; t=20; A=[-1 3 2;-5 -2 1;-2 3 -1]; b=[-1 3 1]'; c=[1 0.5 3]; d=0.1; sim('Aufgabe_1_sim',t) figure('Name','RT I SeerAufgabe 1') plot(time,y,'.-','LineWidth',0.5,'Color',[1 0 0]) hold on plot(time,u,'-','LineWidth',2,'Color',[0 0 1]) figure(1) xlabel('Time [s]') ylabel('Magnitude') legend('Output','Input')