Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 519 Bytes

README.md

File metadata and controls

14 lines (8 loc) · 519 Bytes

Game of life

Game of life simulation codes that I wrote

Goal: Random start game state, visualize each iteration, fast

Python was too slow, after switching to MATLAB I had to put a sleep(0.1) function in order to see a generation because it calculated each generation too fast.

MATLAB without slowing it down:

Fast Boi

MATLAB after slowing it down:

Forced to slow down fast boi