Clear Filters
Clear Filters

Combine two MATLAB figures with two different y axes

3 views (last 30 days)
Hi, I have such a similar problem, like describes in the followink, link but using this code https://de.mathworks.com/matlabcentral/answers/525423-combine-two-matlab-figures-with-two-y-axes
results in such too small range of visualized data of the file "VR Acc x".
x-axis of the figures do not matter, they represent same timeline
Can anybody please help me that the range can be set to a nice display of this small data range of the y-axis?
That acceleration data an gyroskopic data iare shown within their plausible ranges?
  2 Comments
Les Beckham
Les Beckham on 16 Nov 2023
The figures that you attached are not showing the two sets of data on the same plot (with two y axes) as you seem to want, based on the link you show.
Can you show the code you have written to make the desired plot, and the result? Also, what is it that you don't like about the result?
Belinda
Belinda on 17 Nov 2023
Sorry I don't have access to the code, only the given figures :(

Sign in to comment.

Accepted Answer

Sulaymon Eshkabilov
Sulaymon Eshkabilov on 16 Nov 2023
Is this what you want to obtain:
fig1 = openfig('qualitatixe Analyse VR ACCx_31_35sek.fig');
fig2 = openfig('qualitatixe Analyse VR gyr z_31_35sek.fig');
ax1 = findobj(fig1, 'type', 'axes');
yyaxis(ax1, 'left');
line1L = ax1.Children;
ax2 = findobj(fig2, 'type', 'axes');
yyaxis(ax2, 'left');
line1R = ax2.Children;
fig = figure;
ax = axes();
yyaxis(ax, 'left');
LineL = copyobj(line1L, ax);
ylabel('G [9,81m/s²] ')
yyaxis(ax, 'right');
LineR = copyobj(line1R, ax);
ylabel('Winkeländerung [dps]')
yyaxis(ax, 'left');
ax.YLim = [-4.65 4.65]; % change Ylimits of left axes if necessary
yyaxis(ax, 'right');
ax.YLim = [-225 225]; % change Ylimits of right axes if necessary
xlim([0, 120]) % change Xlimits if necessary
legend('G ', 'Winkeländerung', 'Location', 'Best')
grid on
  3 Comments
Belinda
Belinda on 17 Nov 2023
thank you for your help!I spend so many hours with trying to fix my problem and this code runs so easy !

Sign in to comment.

More Answers (1)

William Rose
William Rose on 16 Nov 2023
I packaged the raw data into a single .mat file, attached. I will make two figures. Figure 1 has two panels. Figure 2 has right and left y-axes.
load('Belinda');
figure
subplot(211); plot(x1,y1,'-r'); xlim([86 90]); grid on
subplot(212); plot(x2,y2,'-g'); xlim([86 90]); grid on
figure
yyaxis left; plot(x1,y1,'-r');
xlim([86 90]); ylim([-5 5]); grid on
set(gca, 'YColor','r')
yyaxis right; plot(x2,y2,'-g');
xlim([86 90]); ylim([-250 250])
set(gca, 'YColor','g')
Good luck.

Categories

Find more on Interactive Control and Callbacks in Help Center and File Exchange

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!