mirror of
https://github.com/vale981/fpraktikum
synced 2025-03-05 17:41:39 -05:00
242 B
242 B
1
1
#BEGIN_SRC python :tangle yes x = 1 import numpy, math, matplotlib.pyplot as plt %matplotlib inline x = numpy.linspace(0, 2*math.pi) plt.plot(x, numpy.sin(x))
#+END_SRC