feat: serie 8 LR-Zerlegung

This commit is contained in:
Sandro Zimmermann 2026-04-23 18:18:53 +02:00
parent 493eb3d03c
commit 8c6e158d21

13
src/serie_8.py Normal file
View File

@ -0,0 +1,13 @@
# %%
# Import
import numpy as np
# Parameter
matrizen = [
np.array([[3, 1], [6, 9]]),
np.array([[3, 2], [1, 4]]),
np.array([[3, 12], [1, 4]]),
np.array([[2, 3, 1], [1, 2, -1], [3, 5, 1]]),
np.array([[3, 5, 0], [5, 8, -1], [1, 2, -1]]),
np.array([[2, 4, 6], [1, 2, 3], [3, 6, 9]]),
]