Generate a pulse on Matlab of rectangular shape (y as function of t) of 40ns long (start at t0 and ends at t0+40). Compute the ratio of integrals when the capture is at t0+15. Solution t=0:.01:40; %Time vector w = 1; %pulse width d= w/2:w*2:10; %delay vector y=pulstran(t,d,\'rectpuls\',w); plot(t,y);.