subject

Conway's game of life

now that we have a working evolve function, we can carry out longer-term simulations of the game of life. (if you haven't gotten evolve to work yet, we provide it for this step.)

consider a wrapper loop that will simulate a glider traveling for nt time steps:

import numpy as np
import matplotlib. pyplot as plt

glider = np. zeros( ( 24,24 ) )
glider[ 10,10 ] = 1
glider[ 11,10 ] = 1
glider[ 12,10 ] = 1
glider[ 12,11 ] = 1
glider[ 11,12 ] = 1

nt = 10
for t in range( nt ):
cells = evolve( cells )
plt. imshow( cells )
plt. show()
write a program which implements a loop evolving pentadecathlon for thirty time steps. you should implement a list of ndarrays named pd_list, each containing a single generation of pentadecathlon's evolution.

pentadecathlon = np. zeros( ( 24,24 ) )
pentadecathlon[ 10: 20,10 ] = 1
pentadecathlon[ 12, 9 ] = 1
pentadecathlon[ 12,10 ] = 0
pentadecathlon[ 12,11 ] = 1
pentadecathlon[ 17, 9 ] = 1
pentadecathlon[ 17,10 ] = 0
pentadecathlon[ 17,11 ] = 1
your submission for this part should include the list of ndarrays named pd_list. if you wish to see the results at each time step, move plt. show() into the loop.

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 11:30
Awell-diversified portfolio needs about 20-25 stocks from different categories.
Answers: 2
question
Computers and Technology, 23.06.2019 05:20
What did creator markus “notch" persson initially call his game
Answers: 1
question
Computers and Technology, 23.06.2019 06:20
Which text function capitalizes the first letter in a string of text? question 10 options: upper capital first proper
Answers: 1
question
Computers and Technology, 23.06.2019 09:50
Allison and her group have completed the data entry for their spreadsheet project. they are in the process of formatting the data to make it easier to read and understand. the title is located in cell a5. the group has decided to merge cells a3: a7 to attempt to center the title over the data. after the merge, allison points out that it is not centered and looks bad. where would the title appear if allison unmerged the cells in an attempt to fix the title problem?
Answers: 2
You know the right answer?
Conway's game of life

now that we have a working evolve function, we can carry out longe...
Questions
question
Mathematics, 17.04.2020 16:20
question
Biology, 17.04.2020 16:20
question
Mathematics, 17.04.2020 16:20
question
Mathematics, 17.04.2020 16:20
Questions on the website: 13722361