0

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

harry4
  • 189
  • 1
  • 4
  • 16

1 Answers1

5

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

Vitaliy Kaurov
  • 1,298
  • 7
  • 21