mirror of
https://gitlab.gwdg.de/j.hahn02/ws-numerik.git
synced 2026-03-01 19:32:42 +01:00
17 lines
214 B
Python
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()
|