如何将1:1关系添加到情节中

时间:2014-04-19 11:46:39

标签: matlab plot

考虑这个例子:

x = [99.125,98.041;...
     85.125,83.791;...
     93.625,94.583;...
     76.125,76.833;...
     80.416,81.166;...
     82.458,87.541;...
     84.500,83.291;...
     75.916,77.208];

scatter(x(:,1),x(:,2))

我可以用

绘制最合适的线条
lsline

但我如何绘制1:1关系线?

1 个答案:

答案 0 :(得分:1)

假设通过" 1:1关系"你的意思是由两列x隐式定义的地图,你可以按如下方式绘制它。

x_s = sortrows(x, 1)
plot(x_s(:,1), x_s(:,2))

enter image description here