|
|
|
|
|
by yowlingcat
2502 days ago
|
|
Yeah, this is really cool. While the grammar remains the same, seeing something like: ```
kmc =: right (step power infinity) initialise
initialise =: (left deal tally at right) from right
step =: (left groupby allocate rank 1 2) then (mean every)
allocate =: euclidean then (equal minimum) then indices then head
euclidean =: (minus then square then sum) vectors
``` That's quite readable and compact. I'm fascinated by J now. |
|