Initial commit with project files

This commit is contained in:
2025-06-27 14:34:11 +02:00
commit 7ea3207e63
310 changed files with 9331 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import numpy as np
I = [
[1, 4, 6],
[3, 2, 1],
[6, 8, 2],
]
I = np.asarray(I)
print("Median", np.median(I))
print("Mittelwert", np.average(I))