Cant get plotyy to work with string x tick labels

1 vue (au cours des 30 derniers jours)
Andrew Alkiviades
Andrew Alkiviades le 22 Sep 2012
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?

Réponse acceptée

Wayne King
Wayne King le 22 Sep 2012
Modifié(e) : Wayne King le 22 Sep 2012
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'});

Plus de réponses (0)

Catégories

En savoir plus sur Two y-axis dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by