Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

how to plot single curve with 2 yaxis align?

1 visualizzazione (ultimi 30 giorni)
LEONG SING YEW
LEONG SING YEW il 22 Mar 2020
Chiuso: MATLAB Answer Bot il 20 Ago 2021
Hi everyone,
i am trying to plot only a single curve, and that every points of the curve is align to the data from Y1 and Y2, for example: (0.015, 0.05, -130) is not correctly plotted as shown in the image below (the phase difference is wrong.
i'm not sure if i am using the correct commands, appreaciate any help
X = [0.015 0.060 0.100 0.140]; %Equivalence Ratio
Y1 = [0.05 0.128 0.215 0.313] %HRR magnitude
Y2 = [-130 -118 -111 -105]; %Phase Difference
hold on
[ax,h1,h2] = plotyy(X,Y1,X,Y2,'plot');
set(h2, 'Visible','off') %turn off second plot (not needed)
set(h1,'LineStyle','--','Marker','s','Color','b',...
'DisplayName',"q'/q_o")

Risposte (1)

Cris LaPierre
Cris LaPierre il 23 Mar 2020
Modificato: Cris LaPierre il 23 Mar 2020
Your second plot is not appearing.
Starting in r2016a, the recommended way to plot with 2 y-axes is to use yyaxis.
= [0.015 0.060 0.100 0.140]; %Equivalence Ratio
Y1 = [0.05 0.128 0.215 0.313]; %HRR magnitude
Y2 = [-130 -118 -111 -105]; %Phase Difference
yyaxis left
plot(X,Y1,'--bs',"DisplayName","q'/q_o")
yyaxis right
plot(X,Y2);
legend

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by