我正在将图表绘制为plot(m,n,'o')
。在此图中,图表i再次需要绘制2点之间的一条线。
已经尝试过:
plot(m,n,'o',[10 10],[100 70])
第二部分只是给我一些观点。我需要的是连接两点的直线。
答案 0 :(得分:2)
我认为您正在寻找:
m = 1:10;
n = rand(1,10);
plot(m,n, '-o') % plot a normal line and circles at marker points
' -o' 是以下内容的组合: