0

我使用包含 5000 个元素的 Python 程序制作了一个列表。我想根据看起来像的整数列表绘制这个列表[-2500:2500]。我怎样才能做到这一点?

4

1 回答 1

5

使用matplotlib

import math
import random
import matplotlib.pyplot as plt

mylist = [math.sin(i/5000.*2*math.pi)+random.random()/10.0 for i in range(5000)]
x = range(-2500, 2500)
plt.plot(x, mylist)
plt.savefig('test.png')
plt.show()

在此处输入图像描述

这里有一个 matplotlib 示例库(带有源代码)。它可以帮助您评估 matplotlib 是否满足您的需求。

于 2013-02-06T22:39:46.620 回答