diff options
| author | Marshall Lochbaum <mwlochbaum@gmail.com> | 2022-06-25 22:20:19 -0400 |
|---|---|---|
| committer | Marshall Lochbaum <mwlochbaum@gmail.com> | 2022-06-25 22:20:24 -0400 |
| commit | c618ade174cc2b4e428457751ad8dd01130c2239 (patch) | |
| tree | 2c0840b92204d77ec982a6cf7cb6a1e4f738545f /doc/windows.md | |
| parent | e62c37d34604f6a2293e981d2fd986729e70d2c9 (diff) | |
Back to editing docs
Diffstat (limited to 'doc/windows.md')
| -rw-r--r-- | doc/windows.md | 63 |
1 files changed, 30 insertions, 33 deletions
diff --git a/doc/windows.md b/doc/windows.md index 379bf644..6c009143 100644 --- a/doc/windows.md +++ b/doc/windows.md @@ -2,75 +2,72 @@ # Windows -In BQN, it's strongly preferred to use functions, and not modifiers, for array manipulation. Functions are simpler as they have fewer moving parts. They are more concrete, since the array results can always be viewed right away. They are easier to implement with reasonable performance as well, since there is no need to recognize many possible function operands as special cases. +The Windows function returns all slices, or contiguous subarrays, with shape (well, shape prefix) `π¨` from `π©`. It might also be seen as sliding a moving window along `π©`. -The Window function replaces APL's Windowed Reduction, J's more general Infix operator, and Dyalog's Stencil, which is adapted from one case of J's Cut operator. +This function replaces APL's Windowed Reduction, J's more general Infix operator, and Dyalog APL's Stencil, which is adapted from one case of J's Cut operator. In BQN, it's strongly preferred to use functions, and not modifiers, for array manipulation. Functions are simpler with fewer moving parts, and more concrete, since the array results can always be viewed right away. -## Definition +## Basic case -We'll start with the one-axis case. Here Window's left argument is a number between `0` and `1+β π©`. The result is composed of slices of `π©` (contiguous sections of major cells) with length `π¨`, starting at each possible index in order. +We'll start with the one-axis case. Here `π¨` is a number between `0` and `1+β π©`. The result is composed of slices of `π©` (contiguous sections of [major cells](array.md#cells)) with length `π¨`, starting at each possible index in order. 5β"abcdefg" There are `1+(β π©)-π¨`, or `(β π©)Β¬π¨`, of these sections, because the starting index must be at least `0` and at most `(β π©)-π¨`. Another way to find this result is to look at the number of cells in or before a given slice: there are always `π¨` in the slice and there are only `β π©` in total, so the number of slices is the range [spanned](logic.md) by these two endpoints. -You can take a slice of an array `π©` that has length `l` and starts at index `i` using [Take](take.md) with Drop or [Rotate](reverse.md#rotate): `lβiβπ©` or `lβiβ½π©`. The [Prefixes](prefixes.md) function returns all the slices that end at the end of the array (`(β π©)=i+l`), and Suffixes gives the slices that start at the beginning (`i=0`). Windows gives yet another collection of slices: the ones that have a fixed length `l=π¨`. Selecting one cell from its result gives you the slice starting at that cell's index: +A single slice of an array `π©` with length `l` and starting index `i` is `lβiβπ©`, using [Take and Drop](take.md). The [Prefixes](prefixes.md) function returns all the slices that end at the end of the array (`(β π©)=i+l`), and Suffixes gives the slices that start at the beginning (`i=0`). Windows gives yet another collection of slices: the ones that have a fixed length `l=π¨`. Selecting one cell from its result gives the slice starting at that cell's index: 2β5β"abcdefg" - 5β2β"abcdefg" - -Windows differs from Prefixes and Suffixes in that it doesn't add a layer of nesting (it doesn't enclose each slice). This is possible because the slices have a fixed size. -### Multiple dimensions + 5β2β"abcdefg" -The above description applies to a higher-rank right argument. As an example, we'll look at two-row slices of a shape `3βΏ4` array. For convenience, we will enclose each slice. Note that slices always have the same rank as the argument array. +Windows differs from Prefixes and Suffixes in that it doesn't add a layer of nesting (it doesn't enclose each slice). This is possible because the slices have a fixed size, so they fit together as cells of an array. - <β2 2β"0123"βΎ"abcd"β"ABCD" +## Windowed reduction -Passing a list as the left argument to Windows takes slices along any number of leading axes. Here are all the shape `2βΏ2` slices: +Windows can be followed up with [Insert](fold.md#insert) on each slice to give a windowed reduction or fold. Here we take running sums of 3 values. - <β2 2βΏ2β"0123"βΎ"abcd"β"ABCD" + +ΛΛ3β β¨2,6,0,1,4,3β© -The slices are naturally arranged along multiple dimensions according to their starting index. Once again the equivalence `iβlβx` ββ `lβiβx` holds, provided `i` and `l` have the same length. +A common task is to act on windows with an initial or final element so the total length stays the same. When using windows of length 2, the best way to accomplish this is with a [shift](shift.md) `Β«` or `Β»`. If the window length is longer or variable, then a trick with Windows works better: add the elements, and then use windows matching the original length. Here we invert Plus [Scan](scan.md) `` +` ``, which requires we take pairwise differences starting at initial value 0. -If `π¨` has length `0`, then `π©` is not sliced along any dimensions. The only slice that resultsβthe entire argumentβis then arranged along an additional zero dimensions. In the end, the result is `π©`, unchanged. + -β(0Β»β’) +` 3βΏ2βΏ1βΏ1 -### More formally + (-ΛΛβ β0βΎβ’) +` 3βΏ2βΏ1βΏ1 -`π©` is an array. `π¨` is a number, or numeric list or unit, with `π¨β€ββ β’π©`. The result `z` has shape `π¨βΎΒ¬βπ¨βΎ((β π¨)βΈβ)β’π©`, and element `iβz` is `π©βΛ(β π¨)(β+βΎ((β π¨)βΈβ)β)i`. +With Windows, we can modify the 3-element running sum from before to keep the length constant by starting with two zeros. -Using [Group](group.md) we could also write `iβz` ββ `π©βΛ(π¨βΎβ(βββ )β’π©) +´¨ββ i`. + (+Λβ β(2β₯0)βΈβΎ) β¨2,6,0,1,4,3β© ## Symmetry -Let's look at an earlier example, along with its [Transpose](transpose.md) (`β`). +Let's look at the first example, paired with its [Transpose](transpose.md) (`β`). - {β¨π©,βπ©β©}5β"abcdefg" + βββ 5β"abcdefg" -Although the two arrays have different shapes, they are identical where they overlap. +Although the two arrays have different shapes, they're identical in the 3Γ3 region where they overlap. - β‘β(3βΏ3βΈβ)ββ5β"abcdefg" + β‘β(3βΏ3βΈβ)ββ 5β"abcdefg" -In other words, the i'th element of slice j is the same as the j'th element of slice i: it is the `i+j`'th element of the argument. So transposing still gives a possible result of Windows, but with a different slice length. +More concretely, the `i`th element of slice `j` is the same as the `j`th element of slice `i`: it's the `i+j`th element of the argument. So transposing still gives a possible result of Windows, but with a different slice length. The two lengths are related by [Span](logic.md), which converts between length and number of slices. {(5βπ©)β‘β(3βπ©)}"abcdefg" -In general, we need a more complicated transposeβswapping the first set of `β π¨` axes with the second set. Note again the use of [Span](logic.md), our slice-length to slice-number converter. + (β "abcdefg") Β¬ 3 - {((5βΏ6Β¬2βΏ2)βπ©) β‘ 2βΏ3β(2βΏ2βπ©)} β5βΏ6βΏ7 +## Multiple dimensions -## Applications +The right argument can have rank more than 1, and it's viewed as a list of major cells following [leading axis](leading.md) principles. As an example, Windows can take two-row slices of a shape `3βΏ4` array. -Windows can be followed up with a [reduction](fold.md#insert) on each slice to give a windowed reduction. Here we take running sums of 3 values. + 2β["0123","abcd","ABCD"] - +ΛΛ3β β¨2,6,0,1,4,3β© + <β2 2β["0123","abcd","ABCD"] -A common task is to act on windows with an initial or final element so the total length stays the same. When using windows of length 2, the best way to accomplish this is with a [shift](shift.md) `Β«` or `Β»`. If the window length is longer or variable, then a trick with Windows works better: add the elements, and then use windows matching the original length. Here we invert Plus [Scan](scan.md) `` +` ``, which requires we take pairwise differences starting at initial value 0. +In the second version we've enclosed each slice with `<β2` for viewingβa slice has rank 2, the same as `π©`. Passing a list as the left argument to Windows takes slices along any number of leading axes. Here are all the shape `2βΏ2` slices: - -β(0Β»β’) +` 3βΏ2βΏ1βΏ1 + <β2 2βΏ2β["0123","abcd","ABCD"] - (-ΛΛβ β0βΎβ’) +` 3βΏ2βΏ1βΏ1 +The slices are naturally arranged along multiple dimensions according to their starting index. Once again the equivalence `iβlβx` ββ `lβiβx` holds, provided `i` and `l` have the same length. -With Windows, we can modify the 3-element running sum from before to keep the length constant by starting with two zeros. +If `π¨` has length `0`, then `π©` is not sliced along any dimensions. The only slice that resultsβthe entire argumentβis then arranged along an additional zero dimensions. In the end, the result is `π©`, unchanged. - (+Λβ β(2β₯0)βΈβΎ) β¨2,6,0,1,4,3β© +Here's a more formal definition: `π©` is an array. `π¨` is a number, or numeric list or unit, with `π¨β€ββ β’π©`. The result `z` has shape `π¨βΎΒ¬βπ¨βΎ((β π¨)βΈβ)β’π©`, and element `iβz` is `iβz` ββ `π©βΛ+´¨(π¨βΎβ(βββ )β’π©)βi`. |
