function [] = chap_5_prob_38() % % Written by: % -- % John L. Weatherwax 2007-04-02 % % email: wax@alum.mit.edu % % Please send comments and especially bug reports to the % above email address. % %----- Y = linspace( 0, 5 ); figure; plot( Y, Y.^2 - Y - 2, '-o' ); %axis( [ 0 1 0 1.25 ] ); xlabel( 'Y' ); ylabel( 'Y^2 - Y - 2' ); grid on; saveas( gcf, '../WriteUp/Graphics/chap_5_prob_38.eps', 'psc2' );