我使用的是MATLAB,但我认为Python代码在适应MATLAB语法后也会做得很好。
我有两个矢量:x和y。
- x有102个值
- y有124个值
已尝试;plot(x,y:len(x((,但由于x和y的长度不相同的错误,它不起作用。
我想做一些类似于plot(x,y(的事情,但直到102个值。这可能吗?
尝试分别绘制每个点:
Python
import matplotlib.pyplot as plt
x = list(range(102)) #102 values
y = list(range(124)) #124 values
for i in range(len(x)):
ax.scatter(x = x[i], y = y[i]) #plots each the point on the ax at the specified spot
plt.show()
这里有一个关于Python中matplotlib轴的有用链接。