Notebook Demo#

[5]:
import matplotlib.pyplot as plt
import numpy as np
x = np.arange(0,10,0.00001)
y = x*np.sin(2*np.pi*x)
plt.plot(y)
plt.show()

../../../../../_images/trainings_log_detail_2026-07-27--Python_code_notebook-only_1_0.png
[11]:
def draw(steps):
    x = np.arange(0,steps,0.00001)
    y = x*np.sin(2*np.pi*x)
    plt.plot(y)
    plt.show()
[15]:
draw(2)
../../../../../_images/trainings_log_detail_2026-07-27--Python_code_notebook-only_3_0.png