Size: 329
Comment:
|
Size: 504
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
= FunExamples = | = John Conways`s "Game of Life" = |
Line 3: | Line 3: |
[[TableOfContents]] == Meaning of Life == Whatever you specify as right argument to this function: |
This dynamic function takes a boolean matrix as argument and return a boolean matrix with the new generation. It is taken from [http://www.dyalog.dk/dfnsdws/n_life.htm Dyalog`s] Website which at the time being (2007-02-09) does not support Unicode. However, you will see APL characters with Internet Explorer but not with any other browser. |
Line 10: | Line 6: |
MeaningOfLife„{+.×/–´•œ¨›|˜-*+±—Ÿ.^/>\</×÷!²³³Ž~½“”,µ?¼''1†0½¹¾} |
life←{↑1 ⍵∨.∧3 4=+/,¯1 0 1∘.⊖¯1 0 1∘.⌽⊂⍵} |
Line 14: | Line 9: |
...will produce a reasonable answer, regardless which type/lenght/depth/rank it is. | ---- CategoryShowcases, CategoryDyalog |
John Conways`s "Game of Life"
This dynamic function takes a boolean matrix as argument and return a boolean matrix with the new generation. It is taken from [http://www.dyalog.dk/dfnsdws/n_life.htm Dyalog`s] Website which at the time being (2007-02-09) does not support Unicode. However, you will see APL characters with Internet Explorer but not with any other browser.
life←{↑1 ⍵∨.∧3 4=+/,¯1 0 1∘.⊖¯1 0 1∘.⌽⊂⍵}