K is an array processing language used in the Kdb database
-1
votes
3answers
81 views
How do I *exclude* [closed]
I have a dataframe (data) which includes a lot of dates. I want to lop off everything from before 1970. I can create a list of indices that are before 1970:
tmp <- which(data$data < ...
0
votes
1answer
359 views
Similarity measurement with wordnet?
I'm using wordnet to calculate similarity measurement between two words. I'm using edu.mit.jwi_2.1.4.jar and edu.sussex.nlp.jws.beta.11.jar but when I calculate the words "apple" and "banana" by ...
0
votes
1answer
67 views
SELECT/COUNT on 2 tabs, how to result just one tab?
Here is my like table with 6 tabs (don't if tab is the right name) I have a good request to select topics with the more likes, recents, and in a specific forum.
http://trotirider.com/stak1.jpg
...
0
votes
2answers
342 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 ...
1
vote
3answers
703 views
KDB/Q memory consumption
I have a KDB/Q databse which has around ~2M records per day consuming about ~2G of memory. At end of day it runs some reporting stuff doing joins between the tables and outputting result into files on ...
2
votes
3answers
230 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
3answers
194 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 ...
1
vote
2answers
80 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...)
10
votes
2answers
679 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 ...
1
vote
2answers
157 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 ...
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 ...
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++?
...
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 ...
6
votes
4answers
890 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 ...
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, ...