1 / 3

Cellular Automaton

Cellular Automaton . David Squeri. A cellular automaton is an array of cells that switch on or off depending on whether other cells are on or off. “ Rules” are passed in as a number from 0 to 255

levana
Télécharger la présentation

Cellular Automaton

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Cellular Automaton David Squeri

  2. A cellular automaton is an array of cells that switch on or off depending on whether other cells are on or off. • “Rules” are passed in as a number from 0 to 255 • The rule’s representation as a 8-digit, binary number determines when cells switch on and off. • In my implementation, every new row depends on the row before it. • For example: Rule 12  00001100 Rule 30  00011110 Rule 188  10111100 • This is the resulting set of rules for Rule=30:

  3. Run my code with: automaton(rule) • Run with Rules 30, 129, 137, 150 Rule = 30 Rule = 129 Rule = 137 Rule = 150

More Related