Interesting details:
Exactly what is a Cellular automaton?
A Cellular automaton is really a special type of world: space is split right into a finite quantity of cells, while time advances over time ‘hops'(t=,1,2,3,…)
Each cell includes a condition ( as an ex.: ‘Dead’, ‘Alive’, ‘True’, ‘False’, ‘Red’, ‘Blue’). A cell represents a Finite Condition Machine.
Cells are connected together. Several connected cells is known as an areaOrbunch. The condition from the cell is impacted by america of their neighbors.
Within the common scenario when time changes(for ex. t=1) each cell changes its current condition in parallel to another cells within the automaton.
A cellular automaton could appear in multiple dimensions: 1-D, 2-D, 3-D, …
You could consider a cellular automaton like a multi-agent system. Each cell represents a real estate agent. Global emerging behavior might be noticed in consequence of local interactions between cells.
Much more about Cellular automata:
http://en.wikipedia.org/wiki/Cellular_automaton
http://mathworld.wolfram.com/CellularAutomaton.html
Intro: Existence-like Cellular automata
Existence-like cellular automata are comprised of “living” cells. A full time income cell has two possible states: Dead or Alive.
Automatically a cell dies except in these instances:
- A cell survives if encircled by N living neighbors
- A cell involves existence if encircled by K living neighbors
where N and K are integers (for ex.
URL:https://morphocode.com/intro-to-cellular-automata/
H:Interesting details:
Key:Intro to Cellular automata