home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / apl / cap / helptab.txt < prev    next >
Text File  |  1992-03-07  |  8KB  |  232 lines

  1. !   quote dot symbol, binomial and factorial
  2. !   binomial, 3!5 is 10
  3. !   factorial, !5 is 120
  4. "   cap null symbol, comment
  5. "   comment
  6. #   left arrow symbol, specification, assignment
  7. #   specification, a#1 2 3
  8. #   assignment, a#1 2 3
  9. $   right arrow symbol, branch
  10. $   branch, $0
  11. %   divide symbol, divide and reciprocal
  12. %   divide, 2%3.2 is 0.625
  13. %   reciprocal, %4 is 0.25
  14. &   and, 0 0 1 1 & 0 1 0 1 is 0 0 0 1
  15. '   quote, 'abc'
  16. (   left parenthesis, (12%3)X2 is 8, 12%3X2 is 2
  17. )   right parenthesis
  18. )   )clear, empties workspace
  19. )   )copy wsid, copies all objects from named workspace
  20. )   )copy wsid names, copies specified objects
  21. )   )drop wsid, delete named workspace
  22. )   )erase names, erases objects in workspace
  23. )   )fns [alphabetic] list defined functions
  24. )   )group name names, gathers objects into a group
  25. )   )grp name, list members of named group
  26. )   )grps [alphabetic], list groups
  27. )   )lib [alphabetic[, list workspace names
  28. )   )load wsid, load named workspace into memory
  29. )   )off, end use of apl
  30. )   )pcopy wsid, copies all objects without matching names
  31. )   )pcopy wsid names, copies specified objects w/o matching names
  32. )   )read fileid, reads file into character matrix named 'file'
  33. )   )run fileid, executes APL expressions in named file
  34. )   )save [wsid], save workspace to named file.
  35. )   )si, list halted functions
  36. )   )sinl, list halted functions and local names
  37. )   )vars [alphabetic] list variables
  38. )   )write fileid, writes character matrix named 'file' to file
  39. )   )wsid [wsid], assign or list workspace name
  40. *   star symbol, exponential and power
  41. *   exponential, *1 2 is 2.7183 7.3891
  42. *   power, 2*3 is 8
  43. +   plus symbol, plus and conjugate
  44. +   plus, 2+3 is 5
  45. +   conjugate, +4 is 4
  46. ,   comma symbol, catenate, laminate, ravel
  47. ,   catenate, 2 3 , 4 5 is 2 3 4 5
  48. ,   laminate, 1 2,[.5]3 4 is 2 2RI4
  49. ,   ravel, (,2 2RI4) is 1 2 3 4
  50. -   overbar, negative numbers, -5
  51. .   dot symbol, inner product, outer product
  52. .   inner product (2 2RI4)+.X2 2RI4 is 2 2R7 10 15 22
  53. .   outer product 1 2J.XI3 is 2 3R1 2 3 2 4 6
  54. /   slash symbol, compress and reduction
  55. /   compress, 1 0 1/I3 is 1 3
  56. /   reduction, +/I3 is 6
  57. 0   digit zero
  58. 1   digit one
  59. 2   digit two
  60. 3   digit three
  61. 4   digit four
  62. 5   digit five
  63. 6   digit six
  64. 7   digit seven
  65. 8   digit eight
  66. 9   digit nine
  67. :   colon (labels)
  68. ;   semicolon symbol
  69. ;   indexing, (2 2RI4)[2;2] is 4
  70. <   less, 3 5<5 3 is 1 0
  71. =   equal 3 5=1 5 is 0 1
  72. >   greater, 3 5>5 3 is 0 1
  73. ?   query symbol, deal, roll
  74. ?   deal, w?y is random deal of w elements from Iy
  75. ?   roll ?y is random selection from Iy
  76. @   log symbol, general logarithm, natural logarithm
  77. @   general logarithm, a@b is log b base a
  78. @   natural logarithm, @2 is .6931471806
  79. A   delta stile symbol, grade up
  80. A   grade up, A3 5 3 2 is 4 1 3 2
  81. B   base symbol, decode
  82. B   decode, 10B1 7 7 6 is 1776
  83. C   base null symbol, execute
  84. C   execute, C'1+2' is 3
  85. D   downstile symbol, floor, minimum
  86. D   floor, D2.718 is 2
  87. D   minimum, 2D3 is 2
  88. E   epsilon symbol, membership
  89. E   membership, 'abcdefgh'E'coffee' is 0 0 1 0 1 0 0
  90. F   top null symbol, format
  91. F   format, 5 3F1%3 is 0.333
  92. G   del symbol (function editing)
  93. H   delta symbol (function editing, ok in names)
  94. I   iota symbol, index generator, index of
  95. I   index generator, I5 is 1 2 3 4 5
  96. I   index of, 'abc 'I'b c a' is 2 4 3 4 1
  97. J   null symbol, inner product, outer product
  98. J   inner product, (2 2RI4)+.X2 2RI4 is 2 2R7 10 15 22
  99. J   outer product, 1 2J.XI3 is 2 3R1 2 3 2 4 6
  100. K   not greater, 1 2 3 K 2 is 1 1 0
  101. K   less than or equal, 1 2 3 K 2 is 1 1 0
  102. L   quad symbol (input/output)
  103. Lav atomic vector, 256-element character vector, all possible characters
  104. Lcr a, canonical representation of defined function named in a
  105. Lct comparison tolerance, default 1e-13
  106. Lex a, expunge objects named by rows of a
  107. Lfx a, fix defined function represented by a
  108. Lio index origin, either 0 or 1
  109. Llx latent expression, executed automatically when workspace loaded.
  110. Lnc a, returns numerical classification of objects named by rows of a
  111. Lnl n, returns character matrix of names with classifications in n
  112. M   domino symbol, matrix divide, matrix inverse
  113. M   matrix divide, M2 2R5 0 0 2 is 2 2R.2 0 0 .5
  114. M   matrix inverse, M2 2R5 0 0 2 is 2 2R.2 0 0 .5
  115. N   top symbol, encode
  116. N   encode, 10N1776 is 1 7 7 6
  117. O   circle symbol, circular, hyperbolic, pi times, pythagorean
  118. O   circular
  119. O   hyperbolic
  120. O   pi times, O 1 2 is 3.14159 6.28319
  121. O   pythagorean, 4Ox is (1+x*2)*.5
  122. P   nand, 0 0 1 1 P 0 1 0 1 is 1 1 1 0
  123. Q   quote-quad (character input)
  124. R   rho symbol, reshape, shape
  125. R   reshape, 2 2RI4 is 2-by-2 matrix of 1 2 3 4
  126. R   shape, R2 2RI4 is 2 2
  127. S   upstile symbol, ceiling, maximum
  128. S   ceiling, S-3.14 3.14 is -3 4
  129. S   maximum, 2S3 is 3
  130. T   circle slope symbol, transpose
  131. T   transpose, T2 2RI4 is 2 2R1 3 2 4
  132. U   down arrow symbol, drop
  133. U   drop, 1U'abc' is 'bc'
  134. V   or, 0 0 1 1 V 0 1 0 1 is 0 1 1 1
  135. W   del stile symbol, grade down
  136. W   grade down, A3 5 3 2 is 2 1 3 4
  137. X   times symbol, times, signum
  138. X   times, 2X3 is 6
  139. X   signum, X-3 0 4 is -1 0 1
  140. Y   up arrow symbol, take
  141. Y   take, 2Y'abc' is 'ab'
  142. Z   not less 1 2 3 Z 2 is 0 1 1
  143. Z   greater than or equal, 1 2 3 Z 2 is 0 1 1
  144. [   bracket, left (axis, indexing)
  145. \   slope symbol, expand, scan
  146. \   expand 1 0 1 \ 'ab' is 'a b'
  147. \   scan +\1 2 3 is 1 3 6
  148. ]   bracket, right (axis, indexing)
  149. ^=  not equal 1 2 3^=2 is 0 1 0
  150. _   bar symbol, minus, negative
  151. _   minus, 1_2 is -1
  152. _   negative, _1 -2 3 is -1 2 -3
  153. `/  slash bar symbol, compress, reduction
  154. `/  compress, 1 0 1`/3 3R'abcdefghi' is 2 3R'abcghi'
  155. `/  reduction, +`/3 4RI12 is 15 18 21 24
  156. `1  dieresis symbol
  157. `A  alpha symbol
  158. `C  cap symbol
  159. `G  del tilde symbol
  160. `I  i-beam symbol
  161. `O  circle stile symbol, reverse, rotate
  162. `O  reverse, `O2 3RI6 is 2 3R3 2 1 6 5 4
  163. `O  rotate, 1 2`O2 3RI6 is 2 3R2 3 1 6 4 5
  164. `R  circle bar symbol, reverse
  165. `R  reverse, `R2 3RI6 is 2 3R4 5 6 1 2 3
  166. `U  cup symbol
  167. `V  nor, 0 0 1 1 V 0 1 0 1 is 1 0 0 0
  168. `W  omega symbol
  169. `X  shoe, right, symbol
  170. `Z  shoe, left, symbol
  171. `\  slope bar symbol, expand, scan
  172. `\  expand, 1 0 1`\2 2RI4 is 3 2R1 2 0 0 3 4
  173. `\  scan, +`\2 3RI6 is 2 3 R 1 2 3 5 7 9
  174. `a  alphabetic a underscored
  175. `b  alphabetic b underscored
  176. `c  alphabetic c underscored
  177. `d  alphabetic d underscored
  178. `e  alphabetic e underscored
  179. `f  alphabetic f underscored
  180. `g  alphabetic g underscored
  181. `h  alphabetic h underscored
  182. `i  alphabetic i underscored
  183. `j  alphabetic j underscored
  184. `k  alphabetic k underscored
  185. `l  alphabetic l underscored
  186. `m  alphabetic m underscored
  187. `n  alphabetic n underscored
  188. `o  alphabetic o underscored
  189. `p  alphabetic p underscored
  190. `q  alphabetic q underscored
  191. `r  alphabetic r underscored
  192. `s  alphabetic s underscored
  193. `t  alphabetic t underscored
  194. `u  alphabetic u underscored
  195. `v  alphabetic v underscored
  196. `w  alphabetic w underscored
  197. `x  alphabetic x underscored
  198. `y  alphabetic y underscored
  199. `z  alphabetic z underscored
  200. a   alphabetic a
  201. b   alphabetic b
  202. c   alphabetic c
  203. d   alphabetic d
  204. e   alphabetic e
  205. f   alphabetic f
  206. g   alphabetic g
  207. h   alphabetic h
  208. i   alphabetic i
  209. j   alphabetic j
  210. k   alphabetic k
  211. l   alphabetic l
  212. m   alphabetic m
  213. n   alphabetic n
  214. o   alphabetic o
  215. p   alphabetic p
  216. q   alphabetic q
  217. r   alphabetic r
  218. s   alphabetic s
  219. t   alphabetic t
  220. u   alphabetic u
  221. v   alphabetic v
  222. w   alphabetic w
  223. x   alphabetic x
  224. y   alphabetic y
  225. z   alphabetic z
  226. {   left brace symbol (not used)
  227. |   stile symbol, magnitude, residue
  228. |   magnitude, |-3 0 4 is 3 0 4
  229. |   residue, 1|2.385 is 0.385
  230. }   right brace symbol (not used)
  231. ~   tilde (not), ~0 1 is 1 0
  232.