% % Written by: % -- % John L. Weatherwax 2007-09-10 % % email: wax@alum.mit.edu % % Please send comments and especially bug reports to the % above email address. % %----- clc; close all; drawnow; lambda = 2; t = linspace(0,15,500); h = lambda^2 * t ./ (1+lambda*t); figure; plot( t, h, '-go' ); xlabel( 't' ); ylabel( 'h(t)' ); grid on; saveas( gcf, '../../WriteUp/Graphics/Chapter12/prob_3_h_plot', 'epsc' );