У меня есть следующий код:
mean_h =[11.9877,13.3937,16.1717];
std_h = [12.5379,10.2732,10.8000];
subplot(2,1,1)
hold on
h = bar(1:3,mean_h,0.2);
errorbar(1:3,mean_h,std_h,'s','MarkerSize',10,...
'MarkerEdgeColor','red','MarkerFaceColor','red');
name = {'4 mics','9 mics','24 mics'};
set(gca,'XTick',[1 2 3],'XTickLabel',{'4 mics','9 mics','24 mics'});
set(gca,'fontsize', 21);
legend({'mean_{hor}', 'std_{hor}'});
grid on
xlabel(' 3 different subsets of horizontal microphone pair combinations of
microphone array 3');
ylabel('Mean/stds rmse`s [°]');
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Mean and standard devaiation for vertical rmse's of microphone array 3
mean_v =[7.3022,11.3737,16.2675];
std_v =[6.2369,9.9813,10.3599];
subplot(2,1,2)
hold on
h = bar(1:3,mean_v,0.2);
errorbar(1:3,mean_v,std_v,'s','MarkerSize',10,...
'MarkerEdgeColor','red','MarkerFaceColor','red');
name = {'4 mics','9 mics','24 mics'};
set(gca,'XTick',[1 2 3],'XTickLabel',{'4 mics','9 mics','24 mics'});
set(gca,'fontsize', 21);
legend({'mean_{ver}', 'std_{ver}'});
grid on
xlabel('3 different subsets of vertical microphone pair combinations of
microphone array 3');
ylabel('Mean/stds rmse`s [°]');
Теперь, когда я строю эти два вспомогательных графика, я сталкиваюсь с проблемой выравнивания в xlabels и ylabels.Они не выровнены.Кто-нибудь может мне помочь, как я могу решить эту проблему.Спасибо