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.
0
votes
1answer
26 views
APL : Display number of words in a string (ignoring spaces)
How should I display the number of words contained in a string(vector) in APL?
There may be multiple spaces between two words.
Ex: Input: ' Hello World, How are you ' should return 5.
To count the ...
-4
votes
1answer
27 views
Print first n odd numbers in APL [closed]
I just started exploring APL. Though, familiar with C++ and python, I got stuck executing a simple program 'Print first n odd numbers' where n is the input in APL.
Please help APL coders.
0
votes
1answer
30 views
Operations on nested arrays in APL
I have the data in the following structures:
Nums←56 66 19 37 44 20 18 23 68 70 82
A←(⍳¨(3≤⍳4)/⍳4)
┌→────┬───────┐
│1 2 3│1 2 3 4│
└~───→┴~─────→┘
What I want to do is create another nested array ...
0
votes
2answers
26 views
The most idiomatic way of creating identity matrix in APL
According to Rosetta Code, there are two idiomatic ways of creating identity matrix in APL:
1. ID←{∘.=/⍳¨ ⍵ ⍵}
2. ID←{⍵ ⍵ ρ 1, ⍵ρ0}
How does the (2) work? Why is this better than the (1), which ...
2
votes
2answers
69 views
Conditional function in APL
Is there a symbol or well-known idiom for the conditional function, in any of the APL dialects?
I'm sure I'm missing something, because it's such a basic language element. In other languages it's ...
1
vote
2answers
59 views
What is the list of circle functions in APL?
According to http://www.microapl.co.uk/apl/APL1_2.PDF, there are circle function between ¯12 and 12. For example, functions 1, 2, and 3 are respectively sin, cos, and tan. I found on this reference ...
2
votes
2answers
95 views
Is a train in J associative
In programming language J, is a train of verbs always associative? If it is, Are there any proofs?
3
votes
1answer
55 views
Open Source Specification of the APL Language? [closed]
Ruby has Ruby Spec.
Does APL have anything (open source) close to this available? A list of expected inputs and outputs atleast?
1
vote
3answers
58 views
NARS2000 has no documentation on how to dynamically define a function
I'm frustrated by the lack of clear documentation in NARS2000.
For example, I don't know how to define a function yet.
( I know I can use trains, but that's beside the point. )
AVG←{(+/⍵)÷⍴⍵} ⍝ ...
3
votes
2answers
176 views
APL readability
I have to code in APL. And since that code is going to be maintained for long time, I am wondering if there are some papers/books which contain heuristics/tips/samples to help in designing clean and ...
0
votes
1answer
106 views
Dyalog APL - Parsing a vector of strings and appending a string to each vector.
I have a vector of input data given by A <-- Files.Dir '...directory' and this returns a vector of all the files in that directory.
However, the path contains only the file names, not the full ...
1
vote
2answers
94 views
How do I use argument twice in a function in J?
I want to write prime function for purposes of learning J.
So far I've come up with this:
=&0+/(=&0)(2+i.(-&2)y)|y
It's working great except that I should store number in y variable.
...
0
votes
3answers
103 views
APL Removing elements from Array
I'm new to APL. How can I remove unwanted elements from an array?
For example:
X←1 2 3 4 5 6 7 8 9
Now I want to remove elements of X that equal either 4 or 6. I tried
X←4↓X
to drop 4 from X, ...
4
votes
1answer
132 views
Define a pervasive function in APL
How can one define a pervasive function in APL?
What I do is
function←{
(⊃⍣(⍬≡⍴⍵)){the function that apply to scalar}¨⍵
}
I think there should be a better way to do this that I'm not seeing ...
1
vote
1answer
114 views
including license statement in the header
I have a simple quick question. Simply put do i absolutely have to put a chosen license statement at the top of every file in my project; or is it acceptable enough to just include the proper license ...
0
votes
2answers
344 views
Core of APL, J, K
I'm trying to understand APL, J, K, and it's slightly frustrating since:
Most books seen to be about APL, but few APL implementations, and I don't have weird keyboards.
K appears to have been ...
4
votes
4answers
577 views
In SQL, How can I generate every possible unique combination of 5!56?
I have a TABLE "elements" with one COLUMN "number", type SMALLINT that contains numbers 1 thru 56. How can I generate unique sets of 5 numbers of every possible combination from 1 to 56, using an SQL ...
1
vote
1answer
147 views
How to link a python data structure into matplotlib? Such as a dict -> bar chart
I have a colleague who showed me his work environment in some other language. He had the ability to create an empty dict-like object and pass a pointer to this object to some other charting library. ...
0
votes
3answers
188 views
APL and Java Interface
Are you aware of a good way to connect a java based webapp with an APL implementation? I read about a wrapper component that can do it, by exposing implementations as web services. Besides that - is ...
0
votes
1answer
85 views
Grade Up/Down APL order
How come that
⌽(⍒'Hello')
is
1 2 4 3 5
when
⍋'Hello'
is
1 2 3 4 5
?
I'm new to APL and stumbled on it by accident. I just wonderes why the second l comes before the first.
2
votes
0answers
143 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 ...
3
votes
2answers
266 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
2answers
103 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 ...
8
votes
4answers
304 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 ...
5
votes
4answers
275 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.
...
2
votes
2answers
112 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 ...
10
votes
2answers
687 views
Are there any open source projects written in APL? [closed]
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 ...
5
votes
2answers
1k 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.
15
votes
4answers
2k 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 ...
3
votes
3answers
403 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 ...
5
votes
2answers
456 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++?
...
8
votes
7answers
1k views
Is there any open source implementation of APL? [closed]
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? If not, why?
5
votes
1answer
196 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 ...
5
votes
6answers
1k 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 ...
0
votes
2answers
188 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.
1
vote
1answer
322 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 ...
0
votes
2answers
203 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 ...
6
votes
5answers
1k 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, ...
18
votes
10answers
4k views
Would anybody recommend learning J/K/APL? [closed]
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, ...
4
votes
5answers
735 views
Anyone coding with APL? [closed]
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?
79
votes
29answers
15k views
What ever happened to APL? [closed]
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 ...
