Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
860 views

Role of Combinators in Concatenative/Tacit Programming Languages

I have a question about what exact role do higher-order combinators (or function producers) hold in concatenative/tacit programming. Additionally I would like to ask if there is another way to ...
5
votes
5answers
254 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
284 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
296 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
2answers
204 views

Is it possible to write tacit functions in F#

Tacit or point-free style programming allows one to create functions without regard to their arguments. Can this be done in F#?
4
votes
6answers
696 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
353 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
289 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
162 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
3answers
235 views

F# Tacit Programming

It's not a practically important issue, but could you please provide me with an example of tacit programming in F# where my `pointless' functions can have multiple arguments (not in form of list or ...
2
votes
1answer
31 views

Point-free style in Template Haskell

Consider the following Template Haskell function: composeQ :: ExpQ -> ExpQ -> ExpQ composeQ = \x y -> [| $(x) . $(y) |] Is it possible to eliminate the lambda expression from the right ...
2
votes
2answers
101 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
124 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
170 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
2answers
121 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

How do I do file io in J?

I want to be able to read and write files, etc. How can I do this?
1
vote
2answers
120 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
72 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
197 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
172 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?
1
vote
2answers
178 views

Why is this J function not running?

I am attempting to learn J and the book I am using says this is the proper way to define a monadic function function =: 3:0 function statements so I followed this format and wrote the folding ...
1
vote
3answers
183 views

J @ not working as expected

I'm just starting to try to pick up the J language, and am confused by the following: 1 2 +/@{ i.4 1 2 +/ 1 2 { i.4 3 when in the documentation for @ it says: "x u@v y ↔ u x v y" I assume ...
1
vote
5answers
544 views

Anyone coding with APL?

we had a discussion about this language at work... Who works with that today? Don't we normally favor readability over smallest number of lines?
0
votes
3answers
79 views

modifying an element of a list in-place in J, can it be done?

I have been playing with an implementation of lookandsay (OEIS A005150) in J. I have made two versions, both very simple, using while. type control structures. One recurs, the other loops. Because ...
0
votes
2answers
46 views

When I try to add a second hook/fork to this J program, I get unexpected results. Can anyone explain why?

((1&{~+/)*./\(=1&{))1 1 1 3 2 4 1 I always get Index Error. The point is to output two numbers, one that is the same as the first number in the list, the second which is the same as the ...
0
votes
2answers
76 views

Why does the J phrase '(2&*~) 15 7 3 1' produce a table, and why that specific table?

(2&*~) 15 7 3 1 Above is the phrase. At the end is the trace and the final outcome. I understand that the phrase is a monad, I understand that because of ~ it has a left and right argument. ...
0
votes
2answers
164 views

In APL, how can I compute the lowest unused positive integer from a given set of integers?

For example, given 1 8 4 9 0 2 , return 3. Thanks.