Verfasst am: 21.05.2017, 16:32
Titel: Matlab yyplot label and plot
I want to plot e_eff5(2) the imaginary and real part as undotted, normal line and the e_eff5(1) the imaginary and real part as dotted. The real parts are on the left size(blue), the imaginary on the right side(red). Then i want tolabel the 4 lines, dotted blue, normal blue, dotted red, normal red.
figure(5);
plotyy(fGhz,e_eff5(1,:), fGhz,imag(e_eff5(1,:)));
legend(strcat('real T ={}', 20, '°C'), strcat('imag T ={}', 25, '°C'));
hold on;
[hAx,hLine1,hLine2] = plotyy(fGhz,e_eff5(2,:), fGhz,imag(e_eff5(2,:)));
set(hLine1,'LineStyle','--') set(hLine2,'LineStyle','--')
%title('Water Single Debye Model below 100 GHz as a function of temperature Manabe Fit');
title('Wasser Permittivität einzelnes Debye Model (gültig unter 100 GHz)');
xlabel('Frequenz [GHz]');
%ylabel('rel. Permittivität \epsilonr []');
ylabel(hAx(1),'rel. Permittivität Realteil \epsilonr []')% left y-axis ylabel(hAx(2),'rel. Permittivität Imaginarteil \epsilonr []')% right y-axis legend(strcat('real T ={}', 20, '°C'), strcat('imag T ={}', 25, '°C'));
Wenn du Fragen postest, bitte immer auch angeben, was das eigentliche Problem ist: inwiefern macht dein Code nicht das, was du dir vorstellst?
Als Nachfolger von
plotyy
gibt es seit R2016a das deutlich nutzerfreundlichere
yyaxis
.
Grüße,
Harald
Einstellungen und Berechtigungen
Du kannst Beiträge in dieses Forum schreiben. Du kannst auf Beiträge in diesem Forum antworten. Du kannst deine Beiträge in diesem Forum nicht bearbeiten. Du kannst deine Beiträge in diesem Forum nicht löschen. Du kannst an Umfragen in diesem Forum nicht mitmachen. Du kannst Dateien in diesem Forum posten Du kannst Dateien in diesem Forum herunterladen
MATLAB, Simulink, Stateflow, Handle Graphics, Real-Time Workshop, SimBiology, SimHydraulics, SimEvents, and xPC TargetBox are registered trademarks and The MathWorks, the L-shaped membrane logo, and Embedded MATLAB are trademarks of The MathWorks, Inc.