5

我需要制作一部电影。假设,我创建了一个轴并在其上绘制了一些非常定制的内容:

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(或xy)更新轴,保持所有轴属性的最快和最简单的方法是什么?

4

2 回答 2

6

一种快速的方法是简单地更新您绘制的数据的 y 值:

%# note: plot returns the handle to the line, not the axes
%# ax = gca returns the handle to the axes
lineHandle = plot(x, y, 'linewidth', 3, 'prop1', value1, 'prop2', value2, ...);

%# in the loop
set(lineHandle,'ydata',newYdata)

编辑如果有多行怎么办,即lineHandle是一个向量?您仍然可以一步更新;不过,您需要将数据转换为元胞数组。

%# make a plot with random data
lineHandle = plot(rand(12));

%# create new data
newYdata = randn(12);
newYcell = mat2cell(newYdata,12,ones(1,12));

%# set new y-data. Make sure that there is a row in 
%# newYcell for each element in lineH (i.e. that it is a n-by-1 vector
set(lineHandle,{'ydata'},newYcell(:) );
于 2012-04-25T14:30:07.577 回答
0

只需将轴句柄传回后续绘图命令

IE

plot(ax, ...)

而不是

ax = plot(...)
于 2012-04-25T14:27:22.957 回答