>>  <<  Usr  Pri  JfC  LJ  Phr  Dic  Rel  Voc  !:  wd  Help  Primer

Verb arguments

Much of the power of J lies in the ability of a verb to treat its arguments as a series of parts. The verb applies itself to each of the parts, creating a series of partial results, and then assembles the partial results into the final result. Exactly how this works and what you can do with it is described in the next several sections.

Let's look at a few examples to get an idea of where you are heading.
   m =. i. 2 2
   m
0 1
2 3
You can add arrays together that have the same rank and shape.
   m + 2 2 $ 10 11 12 13
10 12
14 16
You can add a single number to an array.
  10 + m
10 11
12 13
What if you wanted to add one number to the first row and a different number to the second row?
   10 20 + m
10 11
22 23
But what if you wanted to add those numbers to the columns instead? You have to indicate that you want to add to the columns not the rows.
   10 20 +"1 m
10 21
12 23

>>  <<  Usr  Pri  JfC  LJ  Phr  Dic  Rel  Voc  !:  wd  Help  Primer