Tagged Questions

K is an array processing language used in the Kdb database

learn more… | top users | synonyms

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
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 ...
5
votes
4answers
578 views

Keeping your code in L1 cache

I have been reading Wikipedia's article on K programming language and this is what I saw: The small size of the interpreter and compact syntax of the language makes it possible for K applications ...
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 ...
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++? ...
1
vote
2answers
122 views

How can express this imperative function in a functional, array-based language like K (or Q)?

How can express this imperative function in a functional, array-based language like K (or Q)? In sloppy C++: vector<int> x(10), y(10); // Assume these are initialized with some values. // ...
1
vote
2answers
40 views

Size of a table (in bytes) in Q

How can I read the size of a table (in bytes) in Q? I know that hcount returns the size of a file in bytes, but I can't find something similar for tables (or in general any object...)
0
votes
2answers
51 views

Passing db path to \l or .Q.l using a variable

I'm writing a q script that loads a db in a particular path and does some processing on it. The location of the db is currently hardcoded in the script, but I want to pass the db path as an argument ...
0
votes
2answers
78 views

Program memory footprint for different interpreters/compilers

Here's an excerpt from the Wikipedia entry on K programming language: The small size of the interpreter and compact syntax of the language makes it possible for K applications to fit entirely ...