
close all

%mo = [10 11 12 1 2 3];
%monthname = {'October', 'November', 'December', 'January', 'February', 'March'};

mo = 1:12;
monthname = {'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'};


bins = 0.25:.5:9.75;

figure
hold on

for i = 1:12
    i
    subplot(6,2,i);
    hist(H_s(find(~(Month-mo(i)))),bins);
    title(monthname(i));
    foo = axis;
    foo(1) = 0;
    foo(2) = 10;
    foo(3) = 0;
    foo(4) = 4500;
    axis(foo);
end


print -depsc2 'MonthlyWaveConditions';
