在模拟matlab

时间:2015-09-11 10:56:58

标签: matlab plot mathematical-lattices

我正在运行一个模拟,描述2D正方形格子前后的活动。前面和后面的描述例如:

front= [-1 1 -1 0 1 0 1  2 -2 1 ];
back = [ 1 0  0 0 2 0 1 -2 -2 1 ];

每个数字表示格子上​​的不同活动。

我想以交互方式绘制这个图,以便格子中的每个值都用不同的标记和颜色标记,并且每次迭代都会更新图。 到目前为止,我有类似的东西:

    % the upper and lower edges of the lattice
    figure (1)
    hold on
    plot(linspace(1,100,10),10*ones(1,10),'k'); %front
    plot(linspace(1,100,10),1*ones(1,10),'k'); %back
    % the front and back when are equal 0 zero (initial condition)
    plot(100*ones(1,10),1:10,'ob','markersize',10); % front
    plot(1*ones(1,10),1:10,'ob','markersize',10); % back
    xlim([-1 101])
    ylim([-1 11])

这标志着我正在进行的系统的初始设置,绘制它以查看我所指的内容。

现在在每次迭代中,我想查看圆圈更改不同值的颜色,例如:

figure (1)
ind=find(front==1);
if (isenum(ind)==0)
    plot(100*ones(1,length(ind)),ind,'or','markerfacecolor','r');
end

这样做了10次,前面有5个值,后面有5个值,模拟时非常重 我希望找到一种方法,我可以跨越格子的前/后跨越#34;一个去"并为每个值分配不同的标记。我设法用imagesc来做,但是,我在试用标记时丢失了我想要保留的图形(我希望稍后添加箭头和其他东西)。有没有人对这些事情有任何经验?

0 个答案:

没有答案