about summary refs log tree commit diff
path: root/sandbox.py
blob: 262caf8f5c10e357dae6fa0deba29630430112da (plain)
1
2
3
4
5
6
7
8
9
10
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)