使用Matlab在图中将离散点连接在一起?

时间:2013-04-03 21:14:51

标签: matlab plot interpolation

如果我有下图:

enter image description here

由代码创建:

for t=1:length(s)  % s is a struct with over 1000 entries
    plot(t,r1,'k'); % r1 = (0,100,150,170) + 1050
    plot(t,r2,'g'); % r2 = (0,300,350,370) + 1050
    plot(t,r3,'b'); % r3 = (0,200,250,270) + 1050
    plot(t,r4,'m'); % r4 = (0,1000,1250,1500) + 1050
    plot(t,max,'r'); % max = 2000
end

每个点实际上从1050传播到它们的当前值。但是你不能用这种方式看到它,因此我希望绘制一条线来连接它们。

如何将同一行的离散点连接在一起?

1 个答案:

答案 0 :(得分:1)

这会给出你想要的结果吗?

for t=1:length(s)  % s is a struct with over 1000 entries
    a(t,:)=r1; % r1 = (0,100,150,170) + 1050  
end
plot(a)