Tagged Questions
J is a high-level, general-purpose, high-performance array programming language.
16
votes
2answers
483 views
Have J style adverbs, forks etc been emulated via libraries in mainstream functional languages?
Has an emulation of J style of super condensed tacit programming via verbs, adverbs, forks, etc., ever been attempted via libraries for mainstream functional languages?
If so, how successful was the ...
14
votes
9answers
2k views
Would anybody recommend learning J/K/APL?
I came across J/K/APL a few months ago while working my way through some project euler problems, and was intrigued, to say the least. For every elegant-looking 20 line python solution I produced, ...
12
votes
4answers
316 views
Does the term “monadic” in J have anything to do with its Haskell use?
(Sorry, I'm stupid and uneducated, so this is probably a ridiculous question.)
I just started looking at J, and they use the terms "monadic" and "dyadic" for what seems (to me) to be unary and binary ...
8
votes
3answers
956 views
APL versus A versus J versus K?
The array-language landscape, while fascinating, is confusing to no end. Is there a reason to to pick and of J or K or APL or A? None of these options seem to be open-sourced -- are there open ...
6
votes
4answers
199 views
Any other ways to emulate `tr` in J?
I picked up J a few weeks ago, about the same time the CodeGolf.SE beta opened to the public.
A recurrent issue (of mine) when using J over there is reformatting input and output to fit the problem ...
5
votes
2answers
265 views
How do I write this C expression in J?
How do I write this C expression in J? (where x is input integer, and a is temporary variable)
((a= ~x & (~x >> 1)) ^= a ? 0 : (a ^ (a & (a - 1))) | (a ^ (a & (a - 1))) << ...
5
votes
5answers
251 views
How to filter a list in J?
I'm currently learning the fascinating J programming language, but one thing I have not been able to figure out is how to filter a list.
Suppose I have the arbitrary list 3 2 2 7 7 2 9 and I want to ...
4
votes
1answer
30 views
What constitutes a “compatible shape” for array arguments to J verbs?
I'm in the process of learning (and having my mind blown by) J, and reading Learning J. I have noticed that many (all?) verbs I've been learning are pretty flexible with their arguments. I can do the ...
4
votes
2answers
82 views
Chain verbs in J
Suppose a boxed matrix containing various types:
matrix =: ('abc';'defgh';23),:('foo';'bar';45)
matrix
+---+-----+--+
|abc|defgh|23|
+---+-----+--+
|foo|bar |45|
+---+-----+--+
And a column ...
4
votes
1answer
280 views
Fiddling with point-free code?
I have been learning the Factor and J languages to experiment with point-free programming. The basic mechanics of the languages seem clear, but getting a feeling for how to approach algorithm design ...
4
votes
4answers
294 views
Best strategies for reading J code
I've been using J for a few months now, and I find that reading unfamiliar code (e.g. that I didn't write myself) is one of the most challenging aspects of the language, particularly when it's in ...
4
votes
6answers
675 views
Learning J/K/APL
I know all 3 are related, and I've seen quite a few answers for problems in Project Euler written in J, and a few written K. What I'm wondering is, which would you suggest learning, and where would ...
4
votes
1answer
352 views
What do you call this functional language feature?
ok, embarrassing enough, I posted code that I need explained. Specifically, it first chains absolute value and subtraction together, then tacks on a sort, all the while not having to mention ...
3
votes
3answers
135 views
How to count the frequency of a element in APL or J without loops
Assume I have two lists, one is the text t, one is a list of characters c. I want to count how many times each character appears in the text.
This can be done easily with the following APL code.
...
3
votes
1answer
71 views
In J, what does the suffix “__” do?
I'm maintaining a large code base in J, and a few rare functions and variables end with __.
Normally, __ is used to reference something in a locale.
barObj =: conew 'Bar'
Foo__barObj
However, I ...
3
votes
1answer
95 views
J, the unfindable verb
1 0 0 1 verb 1 2 3 4
result:1 4
The verb drops the items from the list on the right that have a 0 in the list on the left. I can remember seeing this verb in the Vocabulary but I can't find it ...
3
votes
1answer
102 views
J, creating a function
I just started learning J and I tried to create a function that checks if a number is prime.
<./<./13|*/~(2}.i.)13
This checks if 13 is prime and will return 1.
<./<./10|*/~(2}.i.)10
...
3
votes
3answers
284 views
what are some of J's unique features?
I come from a background of C, Fortran, Python, R, Matlab, and some Lisp - and I've read a few things on Haskell. What are some neat ideas/examples in J or other languages from the APL family that are ...
3
votes
1answer
161 views
Why do I not get the correct answer for Euler 56 in J?
I've solved 84 of the Project Euler problems, mostly in Haskell. I am now going back and trying to solve in J some of those I already solved in Haskell, as an exercise in learning J.
Currently, I am ...
3
votes
3answers
118 views
Abstracting boxed array structures in J
I've been working on a J function for a while, that's supposed to scan a list and put consecutive copies of an element into separate, concatenated boxes. My efforts have taken me as far as the ...
3
votes
1answer
367 views
How to install new modes in emacs 23 on OS X?
I just downloaded the Haskell and J modes off of SourceForge, and I'm having trouble figuring out how to make them interface with emacs 23. Google searches yield detailed instructions for emacs 22, ...
2
votes
1answer
76 views
Strange length error when defining a conjunction in J
I'm playing around with adverbs and conjunctions in J, and have run across a strange problem. I've defined a simple adverb called persistence that can be used to view the progression of numbers ...
2
votes
2answers
150 views
What's the most efficient way to implement Haskell's foldl1 in J?
In Haskell there are two functions that allow one to perform an operation on a list of items in order to reduce it to a single value. (There are more than two, of course, but these are the two I'm ...
2
votes
4answers
108 views
J How to get equation to multiply by itself?
How do I get this equation to multiply by itself?
*/-.%~.q:36
other than repeating the number 36 again. It's Euler's Totient Function by the way.
I'm lacking the last step of multiplying this by ...
2
votes
2answers
65 views
Wrapping J's Adverse primitive (::)
Usually, I will use the :: primitive thus:
SomeVariable"_ :: ] DefaultValue
I'm looking for a way to wrap that ugly SOB. I'm trying to reason it. Normally, it would be with a tacit definition. ...
2
votes
3answers
101 views
What's a more concise way to count the number of times an element occurs in a list in J?
Here's the (probably naive) way I've done it:
count =: 4 : '# (#~ =&x) y'"1 0 1
In other words, if I say 4 count 3 4 4 3 4 7 9 the result is 3, because 4 occurs 3 three times in the given list.
...
2
votes
2answers
119 views
Most concise J syntax for creating a numeric matrix
Imagine that I want to take the numbers from 1 to 3 and form a matrix such that each possible pairing is represented, e.g.,
1 1
1 2
1 3
2 1
2 2
2 3
3 1
3 2
3 3
Here is the monadic verb I formulated ...
2
votes
1answer
59 views
Contextual Help In J
When messing around with Haskell using GHC, I can use various meta-commands like :i or :t to find out some information about an identifier. In REBOL, I can use functions like help and sometimes source ...
2
votes
2answers
100 views
How do I define a monadic function to work on a list in J?
Let's say I have the following J expression:
# 3 ((|=0:)#]) 1+i.1000
This counts the number of numbers between 1 and 1000 that are evenly divisible by 3. (Now, before anyone points out that there's ...
2
votes
3answers
122 views
How to rewrite the halve function in J?
in the J programming language,
-: i. 5
the above function computes the halves of all integers in [0,4]. Now let's say I'd like to re-write the -: function, just for the fun of it. My best guess so ...
2
votes
2answers
168 views
How to refactor this in J?
My newbie solution to Project Euler #1
+/((0=3|1+i.1000-1) +. (0=5|1+i.1000-1)) * (1+i.1000-1)
I know that this can be refactored, and transformed into a function, i don't know how to do it, and I ...
2
votes
2answers
131 views
Where can one find a list of all the operators in J
I am trying to learn J and one huge problem I'm running into is I don't know what all the predefined operators are or where to find them. It took me way too long to figure out the | is both the ...
1
vote
1answer
60 views
J unicode index accessor
In J, i can do the following:
r=:'0123456'
m=:3 } r
echo m
and it prints 3, as it should.
However, unicode seems to not work:
'▁▂▃▄▅▆▇'
m=: 3 } r
echo m
prints nothing. My guess is that this ...
1
vote
2answers
45 views
What's the preferred J source code file extension?
For the J programming language, I'd guess .j, but I've also seen .ijs and .ijt. Is it one of these, or even something else?
1
vote
3answers
64 views
J syntax for functions and modulo
I'm trying to make a function mod3 that returns the input modulo three, but my syntax is wrong. I don't see why the syntax would be any different from the double example in the docs.
$ jconsole
...
1
vote
2answers
39 views
how to type single quote in J gtk terminal under Windows 7
I just started programming J. Now I want to type
text=: 'hello world'
text
in the gtk terminal, which when run should display:
hello world
But when I type the single quote character it renders as ...
1
vote
1answer
59 views
Force array instead of matrix in J for i
The i. primitive produces a list of integers:
i. 10
0 1 2 3 4 5 6 7 8 9
If I want to produce several short lists in a row, I do this:
;i."0 each [ 2 3 4
0 1 0 1 2 0 1 2 3
(the result I ...
1
vote
1answer
92 views
Coding a Quine in J
Today in Computer Science, my friend walked in with an interesting thought, that being a Quine. After looking it up on Wikipedia, we saw lots of examples for more mainstream languages, but nothing for ...
1
vote
0answers
77 views
Vertical x axis label in J plot
Is there some way to set x axis labels vertically for a plot in J (using the plot library, of course)?
For example, this:
load 'plot'
pd 'reset'
pd 'xlabel 2010-01-01 2010-01-02'
pd 'xticpos 10 59'
...
1
vote
3answers
87 views
Fit conjunction (!.) applied to expand
Is it possible to specify a default value for expand with !., the fit conjunction? Normally, it is possible to specify a default fill value for #, but what about #^:_1?
For example, something like
...
1
vote
2answers
154 views
How to “for loop” in J
I tried but the code wont work.
for. T do. B end.
for_xyz. T do. B end.
What would be the equivalent of this from C#
for(int i = 0; i < 10; i++)
Console.WriteLine("Hello World!");
And ...
1
vote
0answers
67 views
Help using Google's SMTP server in J
As part of a Computer Science class, we are learning some socket programming in J and have gotten our programs to send e-mails through the school's SMTP server and receive from our own ISP, simply ...
1
vote
1answer
67 views
Does J have a built-in bitwise xor primitive?
I know J has a primitive that works like xor ~:, but this is really a not equal to (!=)
I can make it function like a bitwise xor by saying:xor =: 4 : '#.((#:x)~:(#:y))' within a verb definition, but ...
1
vote
2answers
112 views
Void Verbs in J
I'm learning how to use J via online reading and doing some old Java assignments over again using this language, and would like to know how to make a verb that doesn't take any operands, or return any ...
1
vote
1answer
117 views
1
vote
1answer
115 views
How can I generate the Rowland prime sequence idiomatically in J?
If you're not familiar with the Rowland prime sequence, you can find out about it here. I've created an ugly, procedural monadic verb in J to generate the first n terms in this sequence, as follows:
...
1
vote
2answers
70 views
How can I define a verb in J that applies a different verb alternately to each atom in a list?
Imagine I've defined the following name in J:
m =: >: i. 2 4 5
This looks like the following:
1 2 3 4 5
6 7 8 9 10
11 12 13 14 15
16 17 18 19 20
21 22 23 24 25
26 27 28 29 30
31 32 33 ...
1
vote
1answer
55 views
Setting the rank of a user-defined verb in J
Here's a function to calculate the digital sum of a number in J:
digitalSum =: +/@:("."0)@":
If I use b. to query the rank of this verb, I get _ 1 _, i.e., infinite. (We can ignore the dyadic case ...
1
vote
3answers
191 views
J: Self-reference in bubble sort tacit implementation
Since I'm beginner in J I've decided to solve a simple task using this language, in particular implementing the bubblesort algorithm. I know it's not idiomatically to solve such kind of problem in ...
1
vote
2answers
171 views
How to refactor this in J?
Here is a different approach for the Project Euler #1 solution:
+/~.(3*i.>.1000%3),5*i.>.1000%5
How to refactor it?