mirror of
https://github.com/vale981/fpraktikum
synced 2025-03-05 17:41:39 -05:00
937 B
937 B
thesnht
(princ (concat (format "Emacs version: %s\n" (emacs-version))
(format "org version: %s\n" (org-version))))
Emacs version: GNU Emacs 26.3 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.10) of 2019-08-29 org version: 9.1.9
import numpy, math, matplotlib.pyplot as plt
%matplotlib inline
x = numpy.linspace(0, 2*math.pi)
plt.plot(x, numpy.sin(x))
print('hi')
[<matplotlib.lines.Line2D at 0x7fd67e31f8b0>]
#BEGIN_SRC ein-python
#+END_SRC
(print "hi")