initial commit

This commit is contained in:
2025-10-01 10:46:21 +02:00
commit 50a55e19d6
138 changed files with 2037 additions and 0 deletions

11
plotting.py Normal file
View File

@@ -0,0 +1,11 @@
import matplotlib as plt
import numpy as np
def plot_sine():
xpoints = np.array([1,8])
ypoints = np.array([3,10])
plt.plot(xpoints,ypoints)
plt.show()
plot_sine()