在Matlab图中连接点

时间:2015-02-18 06:50:20

标签: matlab plot

我正在绘制Matlab图中的点。当我绘制点时,我想连接点。我不知道该怎么做。以下是使用的代码段:

for index=2:length(x1(1:100))
    hold on;
    plot(x1(index), x2(index), 'r*', 'markers',3);
end

enter image description here

1 个答案:

答案 0 :(得分:2)

您是否考虑过绘制最后一个点和前一个点的线:

for index=2:length(x1(1:100))
    hold on;
    plot(x1(index + (-1:0) ), x2(index + (-1:0) ), '-*r', 'markers',3);
end