Initial commit with project files
This commit is contained in:
12
2_Bildbearbeitung/ü5/l_a.py
Normal file
12
2_Bildbearbeitung/ü5/l_a.py
Normal 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))
|
||||
Reference in New Issue
Block a user