📜  python plot arrays from matrix - Python代码示例

📅  最后修改于: 2022-03-11 14:45:28.440000             🧑  作者: Mango

代码示例1
plt.figure()
for i in range(len(a)):
    plt.plot(a[i], b[i])
plt.show()