% % Example epage: 28 % Problem epage: 41 % % Written by: % -- % John L. Weatherwax 2008-02-20 % % email: wax@alum.mit.edu % % Please send comments and especially bug reports to the % above email address. % %----- clear all; close all; drawnow; clc; addpath('../../Code/eda_toolbox'); addpath('../../Code/eda_data'); n = 100; p = 1; X = rand(n,p); s = ceil( 1+log2(n) ); figure; hist( X, s ); saveas( gcf, '../../WriteUp/Graphics/Chapter1/prob_1_10_orig_vars', 'eps' ); figure; hist( log(X), s ); saveas( gcf, '../../WriteUp/Graphics/Chapter1/prob_1_10_trans_vars', 'eps' );