Files
ws-numerik/main.py
2026-02-14 16:28:50 +01:00

17 lines
214 B
Python

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__":
main()