我需要制作一部电影。假设,我创建了一个轴并在其上绘制了一些非常定制的内容:
figure;
ax = plot(x, y, 'linewidth', 3, 'prop1', value1, 'prop2', value2, ...);
grid minor;
axis(ax, [xmin xmax ymin ymax]);
legend(ax, ...);
xlabel(ax, ...);
ylabel(ax, ...);
title(ax, ...);
现在我运行一个循环,其中只有 的值y
被更新。
for k = 1 : N
% y changes, update the axis
end
用新的y
(或x
和y
)更新轴,保持所有轴属性的最快和最简单的方法是什么?