Beispiele mit Jupyter¶
Das ist ein symples Jupyter-Notebook.
Matplotlib¶
[1]:
%%time
!date
import numpy as np
from matplotlib import pyplot
%matplotlib inline
x = np.linspace(1E-3, 2 * np.pi)
pyplot.plot(x, np.sin(x) / x)
pyplot.plot(x, np.cos(x))
pyplot.grid()
Mo 5. Mai 18:27:23 CEST 2025
CPU times: user 348 ms, sys: 711 ms, total: 1.06 s
Wall time: 290 ms
