% % Written by: % -- % John L. Weatherwax 2005-08-14 % % email: wax@alum.mit.edu % % Please send comments and especially bug reports to the % above email address. % %----- close all; drawnow; rehash; clc; clear; addpath( '../../Code/eda_data' ); addpath( '../../Code/eda_toolbox' ); addpath( '../Chapter1' ); X{1} = randn(30,1); X{2} = randn(50,1); X{3} = randn(100,1); boxp(X); title( 'boxplot normal data' ); saveas( gcf, '../../WriteUp/Graphics/Chapter9/prob_9_9_boxplot', 'epsc' ); boxp(X,'vw'); title( 'variable width boxplot normal data' ); saveas( gcf, '../../WriteUp/Graphics/Chapter9/prob_9_9_vwboxplot', 'epsc' );