> From: James Foit

[snip]
> I recognized then that APL, and now J, was something that other
> languages weren't: "It was/is a language designed to meet the needs of
> the mind rather than the needs of the computer."  I love it.

Nice!
 
> I mean documentation that
> has hypertext links to every term/concept related to J.  The links
> would eliminate redundancy, maintain conciseness, and enhance
> understanding.  There would be no reason for people to whine about not
> being able to read code since they would have the ability to click on
> any primative (or other things such as often used tacit programs) and
> pull up a definition for it.  With this, getting over the learning
> curve would be far far easier.

In case it helps... in the J IDE, if you place the cursor in front of the 
primitive of interest and press Ctrl+F1, the dictionary page for the primitive 
will be opened in your browser. Unfortunately the dictionary definitions and 
examples weren't written with the beginning J user in mind and probably become 
more useful as you become more experienced (at least that was my experience).

> [3] PLEASE HELP ME
> 
> Where can I find information on extended precision.  I found a little
> bit in section 32 of JfC, but it's a bit hard to follow.  Specifically,
> I need to make an array with 99 elements with each element being n!.
> This is done with this code:
> 
> x =: ! i. 99
> 
> Unfortunately, I need at least 40 digits of precision. I tried a bunch
> of stuff. Failed. This one gave me a domain error:
> 
> ]e =: ! 40 ": i. 99
> 
> Any suggestions?

Searching the J wiki for "extended precision" opens this page:
"http://www.jsoftware.com/jwiki/Essays/Extended%20Precision%20Functions";

----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to