Re: [Jprogramming] Atop Question

2014-02-28 Thread Jon Hough
Thanks for the answers. And thanks for the advice about the accessible dictionary Regards,Jon > Date: Thu, 27 Feb 2014 21:08:01 -0500 > From: henryhr...@nc.rr.com > To: programm...@jsoftware.com > Subject: Re: [Jprogramming] Atop Question > > On the J Wiki, find "The Ac

Re: [Jprogramming] Atop Question

2014-02-27 Thread Henry Rich
On the J Wiki, find "The Accessible Dictionary" in the new users section. The description of @ vs @: is described there. Henry Rich On 2/27/2014 8:15 PM, Jon Hough wrote: > Another beginner question . I'm trying to understand how atop (@) works.I've > read this http://www.jsoftware.com/help/dic

Re: [Jprogramming] Atop Question

2014-02-27 Thread Raul Miller
The issue is rank. + is rank zero, and atop has rank: mv lv rv The convention here is m: monadic, l: left dyadic, r: right dyadic and v refers to the verb on the right (u would refer to the verb on the left). So the monadic rank of <./@+ is the monadic rank of +, the left dyadic rank of <./@+ is

Re: [Jprogramming] Atop Question

2014-02-27 Thread Pascal Jasmin
27, 2014 8:15:54 PM Subject: [Jprogramming] Atop Question Another beginner question . I'm trying to understand how atop (@) works.I've read this http://www.jsoftware.com/help/dictionary/d620.htm But I made my own example and the results are not as I expected.I made a tacit dyadic verb:

[Jprogramming] Atop Question

2014-02-27 Thread Jon Hough
Another beginner question . I'm trying to understand how atop (@) works.I've read this http://www.jsoftware.com/help/dictionary/d620.htm But I made my own example and the results are not as I expected.I made a tacit dyadic verb: func =: <./ @ + Here + is dyadic and <./ is monadic. If I do 1 2