Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import matplotlib.pyplot as plt | |
import matplotlib.animation as animation | |
from matplotlib.ticker import MultipleLocator | |
class LifeGame(object): | |
STATE = {'alive': 2, 'death': 0, 'birth': 1} | |
def __init__(self, cells): | |
self._cells_initial = np.copy(cells) # 初期のセル配列 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
class LifeGame(object): | |
STATE = {'alive': 2, 'death': 0, 'birth': 1} | |
def __init__(self, cells): | |
self._cells_initial = np.copy(cells) # 初期のセル配列 | |
self._cells_in = np.copy(cells) # ルール適用前のセル配列 | |
self._cells_out = np.copy(cells) # ルール適用後のセル配列 np.copy(cells) | |
self._SHAPE = cells.shape |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
CELLS_WIDTH=8 | |
cells = np.zeros((CELLS_WIDTH, CELLS_WIDTH), 'int') | |
cells[:3,:3] = 1 | |
print(cells) | |
# 条件:自分が生きている | |
def isAlive(cell_idx, cells): | |
if cells[cell_idx] == 0: |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.