Tagged Questions

APL (named after the book A Programming Language) is an interactive array-oriented language. It is based on a mathematical notation developed by Kenneth E. Iverson.

learn more… | top users | synonyms

55
votes
28answers
10k views

What ever happened to APL?

When I was at University 30 years ago, I used a programming language called APL. I believe the acronym stood for "A Programming Language", This language was interpretive and was especially useful ...
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, ...
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 ...
7
votes
4answers
211 views

Does development with scalaz require an Unicode/APL-like keyboard?

Can scalaz be used without a keyboard containing the appropriate Unicode characters or does every Unicode identifier also have an "ASCII" equivalent (and if yes, is there any guarantee that it stays ...
7
votes
2answers
296 views

Are there any open source projects written in APL?

I'm trying to learn APL (Kona), and I'm looking for example projects so I can get an understanding of how an experienced APL'er would organize his/her code. Any open source projects would be helpful ...
4
votes
6answers
514 views

Is there any open source implementation of APL?

I am aware of J & K; but neither are open source. I'm also aware of A+, but that seems outdated. Is there any decent open source implementation of APL? If so, where; is not, why? Thanks!
4
votes
1answer
145 views

what language was cybersyn/cyberstride implemented in?

I am aware that it was implemented on the IBM 360 mainframe architecture but does anyone know what language(s) were used in particular? Supposedly the bulk of it was programmed and deployed in 3-4 ...
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
5answers
886 views

Where can I learn APL?

I want to learn APL (more specifically Dyalog APL), but I can't seem to find any good sources to learn from. The only source I could find was Dyalog's Documentation Downloads, but other than that, ...
3
votes
1answer
160 views

Could APL be implemented in Scala as a DSL?

There is a old computer language called APL. Could this be implemented in Scala as a DSL? http://en.wikipedia.org/wiki/APL_%28programming_language%29
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
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
2answers
275 views

K/APL style programming in C++?

I'm writing code in C++, but I really like K/APL's array-oriented style. Does anyone know of a good set of operator overloading tricks / macros / ... to allow some K/APL -style programming in C++? ...
2
votes
1answer
59 views

How to write N N N … N using operators (or other things)?

Well.. I have started to learn APL since yesterday. I'm watching youtube videos teaching about various symbols from basic, and I'm using NARS2000. What I want is to print the Fibonacci sequence. I ...
2
votes
2answers
69 views

What is the best way to implement the APL compress operator in Perl?

Sometimes my APL familiarity gives me algorithmic ideas for problem solving that I re-implement in a language I have - Perl, for example. So I have processed a text file to create a boolean vector ...
1
vote
0answers
63 views

Visual / RAD APL?

Are there any Visual / Rapid Application Deployment implementations of APL? If not, what would be needed to implement such a tool? If it doesn't exist, what would the libraries/interfaces look like ...
1
vote
2answers
342 views

Which is the best (and free) APL interpreter?

I need an APL implementation to test some expressions, do your know which is the best interpreter for the language ? It would be great if it is free and it runs on Linux. Thank you very much.
1
vote
1answer
249 views

A+ and Emacs (but *not* XEmacs)

I have installed A+ and set up XEmacs in Debian, using the aplus-fsf-dev and aplus-fsf-el packages; XEmacs was installed as a dependency. I checked the A+ site (http://www.aplusdev.org/), and there ...
1
vote
5answers
540 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
0answers
13 views

What are valid licenses that we can use when posting answers (code snippets) in stack overflow? [migrated]

1) Should we specify under what license a code snippet is under? 2) If the snippet doesn't come under a specific license, how can we use the solution and be sure of not being harassed later because ...
0
votes
2answers
163 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.
0
votes
2answers
157 views

How to increase variable precision in Dyalog APL?

I need to work with precision in Dyalog APL. I know the value of ⎕PP sets the precision, but I can't increase it over 18, so I can't get more precision than 18 digits and I need to operate with big ...