Indices: Difference between revisions
From NARS2000
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 7: | Line 7: | ||
<td></td> | <td></td> | ||
<td></td> | <td></td> | ||
<td>returns a simple integer vector or nested vector of integer vectors identical to <apll> | <td>returns a simple integer vector or nested vector of integer vectors identical to <apll>(,R)/⍳⍴1/R</apll>.</td> | ||
</tr> | </tr> | ||
</table> | </table> | ||
Line 28: | Line 28: | ||
<p>For example, in origin-0</p> | <p>For example, in origin-0</p> | ||
<apll> ⍸1 0 1 1 1 0 1<br /> | <apll> ⍸3<br /> | ||
0 0 0<br /> | |||
⍸1 0 1 1 1 0 1<br /> | |||
0 2 3 4 6<br /> | 0 2 3 4 6<br /> | ||
⍸2 3 4<br /> | ⍸2 3 4<br /> |
Revision as of 15:31, 16 November 2012
|
||||
R is a simple array of non-negative integers. | ||||
Z is an integer vector of length +/,R. | ||||
For scalars or vectors, the result is equivalent to R/⍳⍴1/R which encapsulates a very common idiom in one symbol. | ||||
For higher rank arrays, the result extends to produce a nested vector of vectors of the indices of all the positive integer elements of R replicated as per the corresponding value in R. |
For example, in origin-0
⍸3
0 0 0
⍸1 0 1 1 1 0 1
0 2 3 4 6
⍸2 3 4
0 0 1 1 1 2 2 2 2
⍸⎕←2 3⍴⍳4
0 1 2
3 0 1
0 1 0 2 0 2 1 0 1 0 1 0 1 2
⍸1 2 3⍴⍳4
0 0 1 0 0 2 0 0 2 0 1 0 0 1 0 0 1 0 0 1 2
∇ Z←(Txt Rep) txtrep Z;a
[1] ⍝ Replace Txt in Z with Rep.
[2] :Assert 2=⍴⍴Z ⋄ :Assert (⍴Txt)≡⍴Rep
[3] a←⍸Txt⍷Z
[4] Z[⊃⊃¨,¨/¨a+⊂0(0..¯1+⍴Txt)]←((⍴a),⍴Rep)⍴Rep
∇
'Now' 'Who' txtrep 4 13⍴'Now is the time...'
Who is the ti
me...Who is t
he time...Who
is the time.