programming-examples/python/Algorithms/plot.py
2019-11-15 12:59:38 +01:00

7 lines
106 B
Python

from cmath import sin
import matplotlib.pyplot as plt
plt.plot([sin(x) for x in range(100)])
plt.show()