about summary refs log tree commit diff
path: root/sandbox.py
diff options
context:
space:
mode:
authorHanEmile <emile.hansmaennel@gmail.com>2017-01-25 21:43:17 +0100
committerHanEmile <emile.hansmaennel@gmail.com>2017-01-25 21:43:17 +0100
commit5df473f352035c6382b3b4484a4e3f84447f94b8 (patch)
treea025471aca1f180d1e54114ce2be1c48504452b6 /sandbox.py
parent50f0dc36338ddc5e60f14f22ef1b7eb9c7b532f7 (diff)
added more files
Diffstat (limited to 'sandbox.py')
-rw-r--r--sandbox.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/sandbox.py b/sandbox.py
new file mode 100644
index 0000000..262caf8
--- /dev/null
+++ b/sandbox.py
@@ -0,0 +1,11 @@
+import numpy as np
+size = 10
+
+x = np.array([range(1, size), range(1, size)])
+print(x)
+
+print("")
+
+y = np.zeros((10, 10))
+y[2, 3] = 5
+print(y)