J is a high-level, general-purpose, high-performance array programming language.

learn more… | top users | synonyms

3
votes
1answer
171 views

Understanding J array

Starting with something simple: a =: 3 4 $ i.12 This creates a nice 3 x 4 matrix. So when I try b=: a $ i.5 I get a very long output for b. I do not understand what the output is (by the way, ...
0
votes
0answers
62 views

How do debugging functional and sequential code differ in J? [closed]

This question asked about how you understand correct J code. I care more about finding the error, because we are building on an IDE for J. Debugging in a functional language differs very much from ...
0
votes
1answer
63 views

Square of the sum minus sum of the squares in J (or how to take the train?)

Still in the learning process of J... The problem to solve is now to express the square of the sum minus the sum of the squares of natural integers. The naive solution is (*:+/>:i.100) - ...
-1
votes
1answer
94 views

Finding integers divisible by x an y in J

Writing my first J program to solver Euler problem #1 (find the sum of all natural numbers below 1000 that are multiples of 3 or 5), I got the following solution: +/(+./0=3 5|/n)#n=.i.1000 However, ...
2
votes
2answers
49 views

Why in J 0%0 is defined, but _%_ gives a NaN error?

I J, 0%0 (zero divided by zero) gives 0 as an answer. However, _%_ (infinity divided by infinity) gives a NaN error? Why isn't it defined, while 0%0 is?
3
votes
1answer
56 views

Euler's identity in J

Just discovering J language, I typed: 1+^o.*0j1 I expected the answer to be 0, but I get 0j1.22465e_16. Although this is very close to 0, I was wondering why there is a numerical error in the ...
3
votes
2answers
83 views

what is a good tacit form of sum(1/(1+x)^y) in J

As a beginner exercise I tried to calculate the following sum in J, sum(1/(1+0.03)^n for n = 1 to 30 using +/%(1 + 0.03)^ >:i.30. How can I write this into a simple tacit form? all I tried are ...
2
votes
1answer
56 views

Executing a commandline from JConsole

I've recently discovered the joy of going through JConsole.exe instead of J.exe to run various scripts. There's generally a noticeable performance gain. However, sometimes I need to use wd winexec ...
1
vote
2answers
46 views

How do I access the n-th column of a boxed array?

Given I have a boxed array with shape 4 3 v =. 4 3$'x1'; 'y1'; 'z1'; 'x2'; 'y2'; 'z2'; 'x3'; 'y3'; 'z3' v NB. +--+--+--+ NB. |x1|y1|z1| NB. +--+--+--+ NB. |x2|y2|z2| NB. +--+--+--+ NB. |x3|y3|z3| NB. ...
2
votes
2answers
90 views

Listing files in directory using for each loop

I've read a few sample codes but I just don't understand how to use the foreach-like loop to iterate through the file collection. Here is how I get the list of files: ls=:0 dir '*.*' I can echo ...
2
votes
2answers
78 views

How to achieve encapsulation in J?

I'm not an expert on scope in J, so please correct me if I make a mistake. (That, in fact, is part of the reason for this question.) What I want to do is create a name that is visible within (but not ...
1
vote
1answer
71 views

command line input for J

I am trying to read command line input following this link (http://www.jsoftware.com/help/user/hashbang.htm) 0".>,.2}.ARGV I can understand that 2}.ARGV drops the "jconsole" and the program name ...
2
votes
1answer
234 views

bode plot in J (right half plane zero, second order)

While working on Exercise 6.5 of Ch06 in Dr. Middlebrook's D-OA method, I tried to make bode plot of the transfer function: bodeplot[s/100+100/s*(1+10/s)] (input to wolframalpha) in J Somehow ...
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?
2
votes
2answers
46 views

Open boxes with a custom padding value in J

Unboxing or opening boxes with different sizes causes padding with 0 for numerals and a space with literals: v=.1 4 8 ; 2 6 4 ; 6 8 4 5; 7 8 9; 6 3 7 4 9 >v 1 4 8 0 0 2 6 4 0 0 6 8 4 5 0 7 8 9 0 ...
1
vote
1answer
55 views

Read input from line in J

I am very new to J (learning it for fun) and I am trying to read data from keyboard. I have tried to make a tiny script which reads in a string and reverses it: |.(1!:1 3) When I run it, I get a ...
0
votes
1answer
100 views

J Programming Beginners Loop

Could someone kindly explain the control structure in J (specifically For and While loops)? Let's say I have a=:1 and b=:10, and I want to add '1' to 'a' using For/While loops till a < b. So, ...
2
votes
2answers
103 views

J (Tacit) Sieve Of Eratosthenes

I'm looking for a J code to do the following. Suppose I have a list of random integers (sorted), 2 3 4 5 7 21 45 49 61 I want to start with the first element and remove any multiples of the element ...
3
votes
1answer
76 views

How Do Ranks Work?

The best way for me to understand J is emulating the interpreter. Since the language is compact and has little rules, it's been easy... with the exception of how ranks affect function evaluation. I ...
2
votes
2answers
59 views

Unique pairs of unequal arrays in J

Suppose two arrays of different sizes: N0 =: i. 50 N1 =: i. 500 There should be a way to get the unique pairs, just combine the two. The "simplest" I found was: ]$R =: |:,"2 |: (,.N0) ,"1 0/ N1 ...
1
vote
1answer
84 views

The running sequential average of a list of numbers in J

I'm trying to generate the Sierpinski triangle (chaos game version) in J. The general iterative algorithm to generate it, given 3 vertices, is: point = (0, 0) loop: v = randomly pick one of the 3 ...
0
votes
0answers
99 views

playing WAV music from anywhere [closed]

Target: I want to play WAV music from program code features: don't want to use one of many libs [ffmpeg, SDL,...] such way: execve("aplay file.wav") is too slow for me course i exec 'aplay' and ...
0
votes
1answer
84 views

function to assign value in a matrix (j-programming)

I have two vectors (say, X and Y) which correspond to row and columns numbers. I want to write a function (a verb, in j-programming) that takes these and assign 1 in a n x n zero matrix. Here's for a ...
2
votes
1answer
57 views

How to list the code of a verb in J

In the console, typing a single verb without parameters will print its content: tolower 3 : 0 x=. I. 26 > n=. ((65+i.26){a.) i. t=. ,y ($y) $ ((x{n) { (97+i.26){a.) x}t ) That's nice for ...
2
votes
2answers
121 views

J Verb Rank and addition

I have a 2x3 array a =. 2 3 $ 2 3 a 2 3 2 3 2 3 And I want to add all the elements together using +/ to get 15. So +/a 5 5 5 Hmmm. This is clearly adding columns. I know that +/ rank is _ ...
1
vote
1answer
57 views

Read from / write to files in J - `1!:2' doesn't work)

I'm trying example from Learning J but it doesn't work. How do I write to/read from a file in J? F =: 'c:\temp\demofile.xyz' NB. a filename 'some data' 1!:2 < F NB. write to file F ...
2
votes
2answers
61 views

Misunderstanding of J Tally(#)

In J, to find the number of elements you can use # right? e.g. # 2 3 4 5 6 5 OK. So what about a multidimensional array b=: 2 3 4 $ i.2 b 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 ...
3
votes
1answer
54 views

J function is not working

I am a complete beginner to J. My first attempt at writing a function is something like the totient function. It takes an array, assumed to be i.num for some number, num. And then computes the number ...
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. ...
3
votes
2answers
73 views

Arbitrary precision number is clipped

J clips the big integer number in the terminal (note the ellipsis in the output). How can this be prevented? Code !333x Output ...
1
vote
1answer
36 views

How can I perform a scalar product on a matrix of pairs?

I have a matrix Mcontaining pairs (i.e. arrays of size 2). Given a pair p, how can I get a 2D matrix M'containing the result of the scalar product of p and each element of M? (0, 0) (0, 1) ...
2
votes
2answers
113 views

J : Iverson's `table` function from _A Personal View of APL_

At the very end of A Personal View of APL (right before the references), Ken Iverson gave the following series of J code snippets: [a=. b=. i. 5 0 1 2 3 4 a +/ b 0 1 2 3 4 1 2 3 4 5 2 3 4 5 6 3 ...
3
votes
1answer
81 views

truth tables with /~ in J

I was experimenting with generating truth tables in J: nand =: *: nand /~ 0 1 1 1 1 0 bxor =: 22 b. NB. Built-in bitwise XOR bxor /~ 0 1 0 1 1 0 Now I want to define my own logical ...
3
votes
2answers
194 views

Differences between J701 and J602

I am going to install the J environment on an Ubuntu box and a WinXP box. The http://www.jsoftware.com/stable.htm site doesn't seem to give a detailed explanation of the difference between J701 and ...
8
votes
2answers
1k views

Writing a large project using J programming language

Disclosure This is a "general" question, perhaps without a specific answer, but it is not intended as a flame war. I would really like some information before embarking on my project. I have to ...
1
vote
1answer
60 views

Consecutive item comparison with smallest memory footprint

In J (using J503, not J6 or 7), normally when I want to see if the elements of an array are smaller than their predecessor, I use this: smaller =: }:<:}. Which results in n-1 items: ...
4
votes
1answer
245 views

Arrays in J programming Language

How does one do array accesses in the J programming language? For example, using C++ as my pseudocode language: int M [100]; // declare an array called M int j = 5; //index into the array int y = ...
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
1answer
77 views

How do I get the type of an atom in J?

Does J have any kind of reflection? I couldn't find anything in the documentation, though I may have missed it.
2
votes
2answers
112 views

How can I implement a grouping algorithm in J?

I'm trying to implement A006751 in J. It's pretty easy to do in Haskell, something like: concat . map (\g -> concat [show $ length g, [g !! 0]]) . group . show (Obviously that's not complete, ...
1
vote
1answer
112 views

J unicode index accessor

In J, i can do the following: r=:'0123456' m=:3 } r echo m and it prints 3, as it should. However, unicode seems to not work: '▁▂▃▄▅▆▇' m=: 3 } r echo m prints nothing. My guess is that this ...
4
votes
1answer
58 views

What constitutes a “compatible shape” for array arguments to J verbs?

I'm in the process of learning (and having my mind blown by) J, and reading Learning J. I have noticed that many (all?) verbs I've been learning are pretty flexible with their arguments. I can do the ...
14
votes
4answers
514 views

Does the term “monadic” in J have anything to do with its Haskell use?

(Sorry, I'm stupid and uneducated, so this is probably a ridiculous question.) I just started looking at J, and they use the terms "monadic" and "dyadic" for what seems (to me) to be unary and binary ...
2
votes
2answers
117 views

What's the preferred J source code file extension?

For the J programming language, I'd guess .j, but I've also seen .ijs and .ijt. Is it one of these, or even something else?
1
vote
3answers
125 views

J syntax for functions and modulo

I'm trying to make a function mod3 that returns the input modulo three, but my syntax is wrong. I don't see why the syntax would be any different from the double example in the docs. $ jconsole ...
1
vote
4answers
247 views

how to type single quote in J gtk terminal under Windows 7

I just started programming J. Now I want to type text=: 'hello world' text in the gtk terminal, which when run should display: hello world But when I type the single quote character it renders as ...
0
votes
1answer
101 views

Consolidating this J code

I'm learning J and starting with something basic; adding the multiples of 3 and 5 below 100. I got it with this code: (+/((((i.100)|~ 3) = 0) # (i.100)),((((i.100)|~ 5) = 0) # ...
0
votes
3answers
129 views

modifying an element of a list in-place in J, can it be done?

I have been playing with an implementation of lookandsay (OEIS A005150) in J. I have made two versions, both very simple, using while. type control structures. One recurs, the other loops. Because ...
1
vote
3answers
93 views

When I try to add a second hook/fork to this J program, I get unexpected results. Can anyone explain why?

((1&{~+/)*./\(=1&{))1 1 1 3 2 4 1 I always get Index Error. The point is to output two numbers, one that is the same as the first number in the list, the second which is the same as the ...
0
votes
2answers
129 views

Why does the J phrase '(2&*~) 15 7 3 1' produce a table, and why that specific table?

(2&*~) 15 7 3 1 Above is the phrase. At the end is the trace and the final outcome. I understand that the phrase is a monad, I understand that because of ~ it has a left and right argument. ...

1 2