Prepare for march

This commit is contained in:
2026-02-14 16:28:50 +01:00
parent ebd4062853
commit 8d796ed247
6 changed files with 333 additions and 4 deletions

10
main.py
View File

@@ -1,5 +1,15 @@
import numpy as np
import matplotlib.pyplot as plt
def main():
print("Hello from ws-numerik!")
test()
def test():
A = np.matrix("1 0; 0 0; 1 1")
print(A)
if __name__ == "__main__":