views:

59

answers:

1

I'm currently self-teaching myself matlab, and I'm interested in cellular automata that was exhibited in old programs like Wolfram's Life1D and Conway's Game of Life from the early 1980s. Is there any available code that would produce Wolfram's Life1D in matlab in some form? I've searched online but have not found anything. Thanks.

+2  A: 

As the comments have pointed out, the MATLAB file exchange is the place to start your search:

Five minutes of poking around already gives several promising links, the first of which implements Life1d.

For enough details to make your own Life1d implementation you can check out:

The trickiest part will probably be plotting the results efficiently. Again, the MATLAB file exchange would be a good place to look for helper classes.

nsanders
Thanks nsanders, I didn't know of the site mathworks.com, or any of these places for MATLAB file exchange. I will certainly take a closer look.
yunone

related questions