% % Written by: % -- % John L. Weatherwax 2009-04-21 % % email: wax@alum.mit.edu % % Please send comments and especially bug reports to the % above email address. % %----- % EPage 103 % close all; clc; clear all; addpath('../../BookCode'); global r; r = 1; simtime = 10; initx = [-7.69, -15.61, 90.39]'; [t,x] = ode23( 'f505', [0, simtime], initx ); plot( x(:,1), x(:,3) ); xlabel('x'); ylabel('z'); %saveas( gcf, '../../WriteUp/Graphics/Chapter5/c_5_p_8_plot.eps', 'epsc' );