% Kathleen Williams % Matlab Test Problem % Student ID #0194633 x = simout.signals.values(:,1); y = simout.signals.values(:,2); subplot(2,1,1),plot(tout,y) title('Difference Equation Y') xlabel('Time in seconds') ylabel('Y (Volts)') grid subplot(2,1,2),plot(tout,x) title('Input File') xlabel('Time in seconds') ylabel('Input Signal (Volts)') grid