fpraktikum/GL/scripts/test.org
2019-10-31 21:45:45 +01:00

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