Cant get plotyy to work with string x tick labels
1 次查看(过去 30 天)
显示 更早的评论
Hi I am trying to draw a double y axis graph with string text for the x labels. I have the following code
x = 1:12;
y1 = Wind_monthly_speed;
y2 = Solar_monthly;
[AX,H1,H2] = plotyy(x,y1,x,y2);
title('Monthly Average Wind Speed and Solar Energy - Hanimaadhoo','FontSize',18)
set(get(AX(1),'Ylabel'),'String','Wind Speed (m/s)','FontSize',15)
set(get(AX(2),'Ylabel'),'String','Insolation (kWh/m2)','FontSize',15)
set(gca, 'XTick',1:12, 'XTickLabel',{'A' 'B' 'C' 'D' 'E' 'F' 'G' 'H' 'I' 'J' 'K' 'L'})
This code gives me a graph but the numeric x tick tables seem to be getting in the way. Does anyone know how to remove them?
0 个评论
采纳的回答
Wayne King
2012-9-22
编辑:Wayne King
2012-9-22
This has to do with how plotyy() creates two overlappying x-axes. You can work around this with the following:
[AX,H1,H2] = plotyy(x,y1,x,y2);
title('Monthly Average Wind Speed and Solar Energy - Hanimaadhoo','FontSize',18)
set(get(AX(1),'Ylabel'),'String','Wind Speed (m/s)','FontSize',15)
set(get(AX(2),'Ylabel'),'String','Insolation (kWh/m2)','FontSize',15)
set(AX,'xtick',1:12)
set(AX,'xticklabel',' ')
set(AX,'xticklabel',{'A' 'B' 'C' 'D' 'E' 'F' 'G' 'H' 'I' 'J' 'K' 'L'});
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Two y-axis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!