clear all;

[exp1, exp2, exp3, exp4, exp5] = textread('Michelson.txt', '%d %d %d %d %d', 'headerlines',1);
data = [exp1, exp2, exp3, exp4, exp5];

boxplot(data,{'Exp 1', 'Exp 2', 'Exp 3', 'Exp 4', 'Exp 5'});
title('Speed of Light Measurements');
xlabel('Experiment');
ylabel('Measured Speed of Light (minus 299,000)');
title('Figure 3.5');
