Saving a figure in matlab with zoom functionality
조회 수: 19 (최근 30일)
이전 댓글 표시
I have a code that generates a plot of my original signal, the rectified signal and then a liner envelpe of the signal. I would like to be able to zoom in on any plot(currently i think my code sets it to the original but if it can be modified to be any plot then if anyone knows how to do that i would apprecate it) and have the other two plots zoom in to the same point automatically. My below code currently does tht if you zoom in on the original signal. I wish to save the figure and then have that zoom funcitonality still be active for the figure. I tried a few things but they didn't work. I'm not very familiar with matlab but i imagine that for it to have the zoom funcitonality you would need to run a script to open the figure with said functionality. If anyone can help out with that part of the code, it would be greatly apprecated. Thank you for your time in advance!
% Plot the original signal, rectified signal, and smoothed signal
figure;
h1 = subplot(3,1,1);
plot(t, original_signal);
title('Original Signal');
xlabel('Time (s)');
ylabel('Amplitude');
grid on;
h2 = subplot(3,1,2);
plot(t, rectified_signal);
title('Rectified Signal');
xlabel('Time (s)');
ylabel('Amplitude');
grid on;
h3 = subplot(3,1,3);
plot(t, smoothed_signal);
title('Linear Envelope');
xlabel('Time (s)');
ylabel('Amplitude');
grid on;
% Set the same x-axis limits for all subplots
common_xlim = [min(t), max(t)]; % Set x-axis limits to min and max of original signal
set(h1, 'XLim', common_xlim);
set(h2, 'XLim', common_xlim);
set(h3, 'XLim', common_xlim);
% Add zoom callback to the original signal subplot
hZoom = zoom;
hZoom.ActionPostCallback = @(obj,event_obj) set([h1,h2,h3],'XLim',get(event_obj.Axes,'XLim'));
댓글 수: 0
채택된 답변
Ranjeet
2023년 4월 11일
Hi Ines,
After testing the provided code in MATLAB R2022b, following code can be tested to zoom in all the subplots when any specific subplot is zoomed in a figure.
% get some random integer vectors for original, rectified and smoothed
% signal
original_signal = randi(100, 500, 1);
rectified_signal = randi(75, 500, 1);
smoothed_signal = randi(25, 500, 1);
t = 1:500;
% Plot the original signal, rectified signal, and smoothed signal
figure;
h1 = subplot(3,1,1);
plot(t, original_signal);
title('Original Signal');
xlabel('Time (s)');
ylabel('Amplitude');
grid on;
h2 = subplot(3,1,2);
plot(t, rectified_signal);
title('Rectified Signal');
xlabel('Time (s)');
ylabel('Amplitude');
grid on;
h3 = subplot(3,1,3);
plot(t, smoothed_signal);
title('Linear Envelope');
xlabel('Time (s)');
ylabel('Amplitude');
grid on;
% Set the same x-axis limits for all subplots
common_xlim = [min(t), max(t)]; % Set x-axis limits to min and max of original signal
set(h1, 'XLim', common_xlim);
set(h2, 'XLim', common_xlim);
set(h3, 'XLim', common_xlim);
zoom on;
% Link the x-axis of the subplots
linkaxes([h1 h2 h3],'x')
To get more information on linkaxes, you can refer the following link.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Subplots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!