Category: Data Visualisation

Wolfram Rules With Excel (VBA)

Stephen Wolfram is famous for many reasons. One of those reasons are his Wolfram Rules looking at cellular automata. One dimensional cellular automata are defined by very simple rules. Each cell is given a value of 1 or 0 depending on the values contained by the three neighbouring cells above (the cell directly above, the…

Read the full article

Game of Life with Excel (VBA)

The Game of Life rules are very simple. You start with a randomly generated grid of cells (some ‘[a]live’ and some ‘dead’).What happens next is decided by the following rules:* Any live cell with two or three live neighbours survives.* Any dead cell with three live neighbours becomes a live cell.* All other live cells…

Read the full article