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
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
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
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:
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