Differences between revisions 2 and 4 (spanning 2 versions)
Revision 2 as of 2007-01-01 00:08:20
Size: 343
Editor: KaiJaeger
Comment:
Revision 4 as of 2007-01-05 22:56:01
Size: 882
Editor: KaiJaeger
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
== Meaning of Life == == Meaning of Life (Hitchhiker`s Guide to the Galaxy) ==
Line 10: Line 10:
MeaningOfLife←{+.×/⍎⊖⍕⊃¨⊂|⌊-*+○⌈∨.∧/>\</×÷!⌽⍉⍉⌹~⍴⍋⍒,⍟?⍳''≡1↑0⍴∊⍵}}}} MeaningOfLife←{+.×/⍎⊖⍕⊃¨⊂|⌊-*+○⌈∨.∧/>\</×÷!⌽⍉⍉⌹~⍴⍋⍒,⍟?⍳''≡1↑0⍴∊⍵}
}}}
Line 13: Line 14:

== 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. Note that this website is at the moment ist not supporting Unicode. You should see APL characters with Internet Explorer but not with other browser.

{{{
life←{
     ↑1 ⍵∨.∧3 4=+/,¯1 0 1∘.⊖¯1 0 1∘.⌽⊂⍵
 }
}}}

FunExamples

TableOfContents

Meaning of Life (Hitchhiker`s Guide to the Galaxy)

Whatever you specify as right argument to this function:

MeaningOfLife←{+.×/⍎⊖⍕⊃¨⊂|⌊-*+○⌈∨.∧/>\</×÷!⌽⍉⍉⌹~⍴⍋⍒,⍟?⍳''≡1↑0⍴∊⍵}

...will produce a reasonable answer, regardless which type/lenght/depth/rank it is.

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. Note that this website is at the moment ist not supporting Unicode. You should see APL characters with Internet Explorer but not with other browser.

life←{                                 
     ↑1 ⍵∨.∧3 4=+/,¯1 0 1∘.⊖¯1 0 1∘.⌽⊂⍵  
 }

GameOfLife (last edited 2015-01-28 19:11:48 by KaiJaeger)