Given the following MATLAB code that defines the transfer function of a certain continuous-time LTI system by its numerator and denominator polynomial coefficients:
num = [1 3]
den = [1 3 2]
t = 0:0.16
ht = impulse(num, den, t)
plot(t, ht)
The code provides an analytical expression of the Impulse Response for this system.