Computes the impulse response of the system StateSpace sc = StateSpace(A=[-1,1;0,-2],B=[1, 0;0, 1],C=[1,0; 0,1],D=[0, 0; 0, 0]).
function plotImpulse extends Modelica.Icons.Function; input Modelica_LinearSystems2.StateSpace ss = Modelica_LinearSystems2.StateSpace(A = [-1, 1; 0, -2], B = [4, 0; 0, 2], C = [2, 0; 0, 3], D = [0, 0; 0, 0]); end plotImpulse;