[A,B,C]=xlsread('Correlation_FullDayData.xlsx',1);
Bayes_WindSpeed_MT=A(138,(1:44));
[A,B,C]=xlsread('Correlation_FullDayData.xlsx',2);
Bayes_Zonal_MT=A(138,(1:44));
[A,B,C]=xlsread('Correlation_FullDayData.xlsx',3);
Bayes_Meridonal_MT=A(138,(1:44));
[A,B,C]=xlsread('Correlation_FullDayData.xlsx',7);
tWindSpeed=A(141,(1:44));
[A,B,C]=xlsread('Correlation_FullDayData.xlsx',8);
[A,B,C]=xlsread('Correlation_FullDayData.xlsx',9);
tMeridonal=A(141,(1:44));
[A,B,C]=xlsread('Correlation_FullDayData.xlsx',14);
gpsWS = A(3,(1:44))';%'purple'
[A,B,C]=xlsread('Correlation_FullDayData.xlsx',15);
[A,B,C]=xlsread('Correlation_FullDayData.xlsx',16);
ylsp = round(linspace(1,numel(ht),12));
UVW_Bayes_tFFt=figure(1); set(UVW_Bayes_tFFt, 'PaperType', 'a4'); set(UVW_Bayes_tFFt, 'PaperOrientation', 'portrait');set(UVW_Bayes_tFFt, 'Resize', 'on');set(UVW_Bayes_tFFt, 'Position',[0 0 2480*(80/100) 3508*(80/100)]);
plot(gpsU,ht,'-.r', 'LineWidth', 1);
plot(tZonal,ht,'color','black', 'LineStyle','-.','LineWidth', 0.5);
plot(Bayes_Zonal_MT,ht,'color','#1E28FA', 'LineWidth', 1);
t= title(' ','HorizontalAlignment','center','FontName','Times New Roman', 'FontWeight', 'bold','fontsize', 12);
subtitle('(a) Zonal Wind','HorizontalAlignment','center','FontName','Times New Roman', 'FontWeight', 'bold','fontsize', 12);
x = xlabel('Zonal (m/s)', 'FontSize',12, 'FontName','Times New Roman', 'FontWeight', 'Normal');
y = ylabel('Range (km)','FontSize',12,'FontName','Times New Roman', 'FontWeight', 'Normal');
set(gca, 'YTick', linspace( (min(ht)), (max(ht)), 7));
set(gca,'FontSize',11,'FontName','Times New Roman', 'FontWeight', 'Normal');
grid minor; grid on; box on;
plot(gpsV,ht,'-.r', 'LineWidth', 1);
plot(tMeridonal,ht,'color','black','LineStyle','-.', 'LineWidth', 0.5);
plot(Bayes_Meridonal_MT,ht,'color','#1E28FA', 'LineWidth', 1);
t= title(' ','HorizontalAlignment','center','FontName','Times New Roman', 'FontWeight', 'bold','fontsize', 12);
subtitle('(b) Meridional Wind','HorizontalAlignment','center','FontName','Times New Roman', 'FontWeight', 'bold','fontsize', 12);
x = xlabel('Meridional (m/s)','FontSize',12,'FontName','Times New Roman', 'FontWeight', 'Normal');
set(gca, 'YTick', linspace( (min(ht)), (max(ht)), 7));
set(gca,'FontSize',12,'FontName','Times New Roman', 'FontWeight', 'Normal');
grid minor; grid on; box on;
plot(gpsWS,ht,'-.r', 'LineWidth', 1);
plot(tWindSpeed,ht,'color','black', 'LineStyle','-.','LineWidth', 0.5);
plot(Bayes_WindSpeed_MT,ht,'color','#1E28FA', 'LineWidth', 1);
t= title(' ','HorizontalAlignment','center','FontName','Times New Roman', 'FontWeight', 'bold','fontsize', 12);
subtitle('(c) Horizontal Wind','HorizontalAlignment','center','FontName','Times New Roman', 'FontWeight', 'bold','fontsize', 12);
x = xlabel('Wind Speed (m/s)','FontSize',12,'FontName','Times New Roman', 'FontWeight', 'Normal');
set(gca, 'YTick', linspace( (min(ht)), (max(ht)), 7));
set(gca,'FontSize',12,'FontName','Times New Roman', 'FontWeight', 'Normal');
grid minor; grid on; box on;
legend ({'GPS','FFT','eBayes'},'Location','none','Position',[0.58950767267108 0.635700313104456 0.311269687972669 0.0192592596301325],'Orientation','horizontal','Box','off','FontSize',11,'FontName','Times New Roman', 'FontWeight', 'bold');