function []=exercise_c_1_12() % % Written by: % -- % John L. Weatherwax 2007-02-07 % % email: wax@alum.mit.edu % % Please send comments and especially bug reports to the % above email address. % %----- close all; x = linspace( eps, 10 ); f = ( 1 + 1./x ).^x; figure; plot( x, f, 'o' ); grid on; xlabel( 'x' ); ylabel( 'f' ); saveas( gcf, '../Cormen_WriteUp/Graphics/exercise_c_1_12.eps' );