harry4
harry4

Reputation: 189

How to start with cellular automata

I have to start working on cellular automaton so can anyone please share the link which may help a beginner to learn the basics.

Upvotes: 0

Views: 1766

Answers (1)

Vitaliy Kaurov
Vitaliy Kaurov

Reputation: 1300

I would suggest the following resources as an introduction to Cellular Automata (CA):

P.S. This is sample CA Mathematica code showing how easy and compact programming structures look in that language:

Image3D /@ CellularAutomaton[{14, {2, 1}, {1, 1, 1}}, {{{{1}}}, 0}, {{3, 10}}]

enter image description here

Table[ArrayPlot[Mean[
   CellularAutomaton[{i, {2, 1}, {1, 1}}, {{{1}}, 0}, 30]],], 
{i, 2, 20, 4}]

enter image description here

Upvotes: 5

Related Questions