figure 4 Y axis with 1 x axis
Afficher commentaires plus anciens
Hi all
thank you for helping
i want to draw figure in matlab that has two main effect (temprature and effiency ) in Y axis in sides when X axis is same range
for example
x=[11 22 33 44 55];
y1E=[0.5506 0.5925 0.6212 0.6419 0.6573]; %Effeiceny 1
y1T=[43.7529 45.0284 45.9019 46.5297 46.9987]; %Temprature 1
when i use this
Ax=plotyy(x,y1E,x,y1T);
hy1=get(Ax(1),'ylabel');
hy2=get(Ax(2),'ylabel');
set(hy1,'string',' efficiency 1');
set(hy2,'string','Temperature1');
xlabel('Number ');
it gives me figure with 1x axis and 2 Y axis in both side
i want to add another Effeiceny and Temprature with same X and in same figure
y2E=[0.3 0.4 0.6 0.8 0.3]; %Effeiceny 2
y2T=[50 45 43 47 55]; %Temprature 2
how can i do that
thank you for this helping
2 commentaires
DGM
le 15 Mar 2021
For cases like this, I doubt plotyy() is the best thing to be using. If you're running R2016a or newer, you can probably try building the plot using yyaxis() instead; I'm not, so this is something I can't test for you.
Generally, in the case when one needs to do complicated plots with multiple coincident axes (e.g. axes in both metric and US customary units), it's best to build the figure by manually overlaying axes objects and working from there. For instance:
Unsurprisingly, there are at least a few tools on the File Exchange which appear to address this inconvenience.
mohammed hussein
le 16 Mar 2021
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Spreadsheets dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


