Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 plot(x, y) 命令绘制图表,其中 x 和 y 是数组。在生成的图表中,我将第一个点和最后一个点用一条线连接起来。如何避免连接的第一个和最后一个点?
如您所见,我遇到了类似的问题:
前
x我只是使用这个排序:
x
x = sorted(x)
如您所见,该行消失了:(但数据因排序而受到干扰)。
分拣后
您还必须确保相应的y值也应为排序的x. 最终输出在这里:
y
固定的