Open figure and work on that figure

114 次查看(过去 30 天)
Shan  Chu
Shan Chu 2018-9-29
回答: Umeshraja 2025-1-3
Dear all,
I would like to ask it is a way to work on a saved figure. For example, add more line plots and also change the axes. I have been trying but didn't succeed.
Here is the code that I made:
figure
hold on
openfig('x.fig')
plot(A);
ax = gca;
ax.XTick = [0 0.01 0.03 0.05]
Thanks
  4 个评论
Rik
Rik 2018-10-1
You will notice that the call to figure is not needed, as openfig already opens a new figure window for the loaded figure.
Adam
Adam 2018-10-1
You should use the
fig = openfig(...)
syntax too to get an explicit handle for your figure. Relying on your desired figure always being the one in focus can lead to some unexpected bugs.
Working with explicit handles is always better. Obviously in this case that is limited - I assume your figure only contains one axes, otherwise I have no idea which axes in the figure would be regarded as the current one, but if you do only have one axes:
hFig = openfig( ... );
hAxes = hFig.CurrentAxes;
will give you your explicit axes handle to work with as well as the figure handle, if required.

请先登录,再进行评论。

回答(1 个)

Umeshraja
Umeshraja 2025-1-3
Hello,
To summarize the discussion in the comments: When modifying a saved MATLAB figure by adding plots and changing axes properties, it's important to explicitly create a handle for your figure. There's no need to call figure beforehand, as openfig already opens a new figure window for the loaded figure.
Below is an example demonstrating how to create a figure, save it, and later modify its axes properties and add a new plot:
% Part 1: Create and save initial figure
x = linspace(0, 2*pi, 100);
y1 = sin(x);
% Create initial figure
fig1 = figure('Name', 'My Plot');
plot(x, y1, 'b-', 'LineWidth', 2);
xlabel('X-axis');
ylabel('Y-axis');
title('Initial Plot');
grid on;
savefig(fig1, 'x.fig');
% Part 2: Load and modify the saved figure
% Open the saved figure and get handles
hFig = openfig('x.fig');
hAxes = hFig.CurrentAxes;
y2 = cos(x);
hold(hAxes, 'on');
plot(hAxes, x, y2, 'r--', 'LineWidth', 2);
% Modify axes properties
hAxes.XTick = 0:pi/2:2*pi;
hAxes.XTickLabel = {'0', '\pi/2', '\pi', '3\pi/2', '2\pi'};
hAxes.YLim = [-1.5 1.5];
legend(hAxes, 'sin(x)', 'cos(x)');
% Save the modified figure if needed
savefig(hFig, 'x_modified.fig');
Note: Working with explicit handles prevents common issues like plotting to wrong axes or losing track of active figures

类别

Help CenterFile Exchange 中查找有关 Printing and Saving 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by