--- Henry Rich <[EMAIL PROTECTED]> wrote:

> You need to take a little time out and learn about rank

"each" is rank 0. Here's what else you can do
exploring other ranks:

   (1;2;3)
+-+-+-+
|1|2|3|
+-+-+-+
   (1;2;3) +each 4
+-+-+-+
|5|6|7|
+-+-+-+
   (1;2;3) +each ,4
|length error
|   (1;2;3)    +each,4
   (1;2;3) +each 4 5 6
+-+-+-+
|5|7|9|
+-+-+-+
   (<1 2 3) +each 4 5 6
+-----+-----+-----+
|5 6 7|6 7 8|7 8 9|
+-----+-----+-----+
   (<1 2 3) +each 4
+-----+
|5 6 7|
+-----+
   (<1 2 3) +each ,4
+-----+
|5 6 7|
+-----+
   (1 2 3) +each 4 5 6
+-+-+-+
|5|7|9|
+-+-+-+
   (i.3 3) +each 4 5 6
+--+--+--+
|4 |5 |6 |
+--+--+--+
|8 |9 |10|
+--+--+--+
|12|13|14|
+--+--+--+
   (i.3 3) +&.:> 4 5 6     NB. &.: has infinite rank
+--------+
| 4  5  6|
| 8  9 10|
|12 13 14|
+--------+
   (i.3 3) +&.:>"1] 4 5 6
+-----+------+--------+
|4 6 8|7 9 11|10 12 14|
+-----+------+--------+
   (i.3 3) +&.:>"1 0] 4 5 6
+-----+------+--------+
|4 5 6|8 9 10|12 13 14|
+-----+------+--------+
   


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to