Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Game of Life (neighbors)
#2
Numpy arrays can be slice nicer then that.
table[0:3, 0:3]
Quick way for game of life
import numpy

size = 10, 10
table = numpy.random.randint(0, 2, size=size).astype(numpy.uint8)
print(table)

# neighbor count
for x in range(size[0]):
    for y in range(size[1]):
        min_x = max(0, x - 1)
        max_x = min(size[0], x + 2)
        min_y = max(0, y - 1)
        max_y = min(size[1], y + 2)

        # Slicing the table
        slice_ = table[min_x:max_x, min_y:max_y]
        print(slice_, '  ', x, y, '\n')
        # Sum all minus self
        sum_ = numpy.sum(slice_) - table[x, y]
99 percent of computer problems exists between chair and keyboard.
Reply


Messages In This Thread
Game of Life (neighbors) - by pawlo392 - Jun-08-2019, 07:52 PM
RE: Game of Life (neighbors) - by Windspar - Jun-08-2019, 09:01 PM
RE: Game of Life (neighbors) - by ThomasL - Jun-13-2019, 09:37 AM
RE: Game of Life (neighbors) - by ThomasL - Jun-14-2019, 09:06 AM
RE: Game of Life (neighbors) - by pawlo392 - Jun-20-2019, 02:32 PM
RE: Game of Life (neighbors) - by Windspar - Jun-20-2019, 03:05 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Game of life Elyur 2 2,090 Mar-30-2020, 10:54 AM
Last Post: Elyur
  [PyGame] Game Logic problem with a "The Game of Life" Replication Coda 2 3,146 Dec-24-2018, 09:26 AM
Last Post: Coda

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020