home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / language / j32.sit / tut / TUT46.JS < prev    next >
Encoding:
Text File  |  1991-06-13  |  228 b   |  22 lines

  1.          INVERSES AND DUALITY Pc
  2.    f=. +&3
  3.    g=. -&3
  4.    
  5.    [ x=. i. 4
  6. 0 1 2 3
  7.    
  8.    f x
  9. 3 4 5 6
  10.    !f x
  11. 6 24 120 720
  12.    g!f x
  13. 3 21 117 717
  14.    !&.f x
  15. 3 21 117 717
  16.    
  17.    !&.(+&3) x
  18. 3 21 117 717
  19.    !&.(*&2) x
  20. 0.5 1 12 360
  21.    
  22.