From 1970fb8ab05705d2226a9615330c7519a671b49b Mon Sep 17 00:00:00 2001 From: Mona Benkert Date: Sun, 2 Nov 2025 12:33:17 +0100 Subject: [PATCH] did it myself --- compute.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/compute.py b/compute.py index 698e55e..84c3f80 100644 --- a/compute.py +++ b/compute.py @@ -55,6 +55,9 @@ def rot_2D(angle: float) -> List[List[float]]: if __name__ == "__main__": + + # ich habe alles selbst programmiert + matrix_a = [ [3, 4, -1, 4], [-2, 2, 5, 1] ]