本文介绍了如何绘制两个文件中的内容?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这只是我职能的一部分。



This is only a section of my function.

y1 = np.genfromtxt(first_filename)
    y2 = np.genfromtxt(second_filename)
    y1 = np.array([y1])
    y2 = np.array([y2])
    x = [0,10,20,30,40,50]
    plt.plot(x, y1, x, y2)
    plt.title('Data')
    plt.xlabel('xlabel')
    plt.ylabel('ylabel')
    plt.show()





目前,x和y没有相同的第一个维度。



Currently, x and y don't have the same first dimension.

推荐答案


这篇关于如何绘制两个文件中的内容?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-26 19:34