At: Difference between revisions

Jump to navigation Jump to search
216 bytes added ,  22:17, 10 September 2022
m
Text replacement - "<source" to "<syntaxhighlight"
(No need for "See Also" on things that are linked in the main text)
m (Text replacement - "<source" to "<syntaxhighlight")
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
== Description ==
== Description ==
At takes two operands, each of which can be an [[array]] or [[function]], with varying effect:  
At takes two operands, each of which can be an [[array]] or [[function]], with varying effect:  
A call to At is of the form <source lang=apl inline>X(f@g)Y</source> where <source lang=apl inline>X</source> is optional.  
A call to At is of the form <syntaxhighlight lang=apl inline>X(f@g)Y</syntaxhighlight> where <syntaxhighlight lang=apl inline>X</syntaxhighlight> is optional.  
* <source lang=apl inline>g</source>  specifies the indices of the right argument that should be modified.
* <syntaxhighlight lang=apl inline>g</syntaxhighlight>  specifies the indices of the right argument that should be modified.
** '''Function''': Must apply monadically to <source lang=apl inline>Y</source>, and return a boolean array of the same shape as <source lang=apl inline>Y</source>, with ones at positions that should be amended.
** '''Function''': Must apply monadically to <syntaxhighlight lang=apl inline>Y</syntaxhighlight>, and return a boolean array of the same shape as <syntaxhighlight lang=apl inline>Y</syntaxhighlight>, with ones at positions that should be amended.
** '''Array''': A [[vector]] (or [[scalar]]) of [[cell]] indices (of equal lengths) to amend. If the same index appears multiple times, the last amendment overrules any previous ones, meaning that amendments are not stacked. This is in contrast to [[modified assignment]] where multiple specifications of the same parts of the array will be processed sequentially.
** '''Array''': A [[vector]] (or [[scalar]]) of [[cell]] indices (of equal lengths) to amend. If the same index appears multiple times, the last amendment overrules any previous ones, meaning that amendments are not stacked. This is in contrast to [[modified assignment]] where multiple specifications of the same parts of the array will be processed sequentially.
* <source lang=apl inline>f</source> specifies what happens to the elements at those positions.
* <syntaxhighlight lang=apl inline>f</syntaxhighlight> specifies what happens to the elements at those positions.
** '''Function''': Is applied once on an array whose [[major cell]]s are the selected cells. If <source lang=apl inline>X</source> is present, then it is bound to  <source lang=apl inline>f</source> so <source lang=apl inline>X f@g Y</source> is equivalent to <source lang=apl inline>X∘f@g Y</source>.
** '''Function''': Is applied once on an array whose [[major cell]]s are the selected cells. If <syntaxhighlight lang=apl inline>X</syntaxhighlight> is present, then it is bound to  <syntaxhighlight lang=apl inline>f</syntaxhighlight> so <syntaxhighlight lang=apl inline>X f@g Y</syntaxhighlight> is equivalent to <syntaxhighlight lang=apl inline>X∘f@g Y</syntaxhighlight>.
** '''Array''': Replaces the selected elements and must either have the same shape as the array whose major cells are the selected cells, or be a scalar, which then replaces all selected cells.
** '''Array''': Replaces the selected elements and must either have the same shape as the array whose major cells are the selected cells, or be a scalar, which then replaces all selected cells.
Each possible [[derived function]] can be applied [[monadic]]ally or [[dyadic]]ally, except if the left operand (<source lang=apl inline>f</source>) is an array, in which case, only the monadic derived function is defined.
Each possible [[derived function]] can be applied [[monadic]]ally or [[dyadic]]ally, except if the left operand (<syntaxhighlight lang=apl inline>f</syntaxhighlight>) is an array, in which case, only the monadic derived function is defined.


== Examples ==
== Examples ==
<source lang=apl>      ⍝ Simple replacement
<syntaxhighlight lang=apl>      ⍝ Simple replacement
       (1 2 3@4 5 6)7 5 4 10 3 6 9 2 1 8
       (1 2 3@4 5 6)7 5 4 10 3 6 9 2 1 8
7 5 4 1 2 3 9 2 1 8
7 5 4 1 2 3 9 2 1 8
Line 30: Line 30:
30 10 4 10 5
30 10 4 10 5
       ⌽@(2∘|) 1 2 3 4 5  ⍝ Reversal of sub-array 1 3 5
       ⌽@(2∘|) 1 2 3 4 5  ⍝ Reversal of sub-array 1 3 5
5 2 3 4 1</source>
5 2 3 4 1</syntaxhighlight>
== External Links ==
== External Links ==
=== Lessons ===
=== Lessons ===

Navigation menu