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

  1.         FAMILIES OF FUNCTIONS Oa
  2.    x=.1 2 3 4 5 6 7
  3.    x^2
  4. 1 4 9 16 25 36 49
  5.    x^3
  6. 1 8 27 64 125 216 343
  7.    (4*x^2) + (_3*x^3)
  8. 1 _8 _45 _128 _275 _504 _833
  9.    
  10.    2 3 ^~/ x
  11. 1 4  9 16  25  36  49
  12. 1 8 27 64 125 216 343
  13.    4 _3 +/ . *2 3 ^~/x
  14. 1 _8 _45 _128 _275 _504 _833
  15.    
  16.    e=. 0 1 2 3 4
  17.    vandermonde=. e ^~/ x
  18.    vandermonde
  19. 1  1  1   1   1    1    1
  20. 1  2  3   4   5    6    7
  21. 1  4  9  16  25   36   49
  22. 1  8 27  64 125  216  343
  23. 1 16 81 256 625 1296 2401
  24.