-
Notifications
You must be signed in to change notification settings - Fork 57
Open
Description
Hi!
First of all, love this project! Using it to teach matrix indexing, and finally simulate and animate an epidemic.
One thing I find a bit confusing though is your choice of indexing which is different from numpy e.g.
grid = BlockGrid(20, 10, block_size=4)
print(grid.shape)
>>> (20, 10)
grid[9, 19]As opposed to numpy
grid = np.zeros((20,10))
print(grid.shape)
>>> (20, 10)
grid[19, 9]Metadata
Metadata
Assignees
Labels
No labels