aboutsummaryrefslogtreecommitdiff
path: root/doc/windows.md
blob: 6c00914368b8c15ab5565923603f5b6ca020d98c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
*View this file with results and syntax highlighting [here](https://mlochbaum.github.io/BQN/doc/windows.html).*

# Windows

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 `𝕩`.

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.

## Basic case

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.

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, so they fit together as cells of an array.

## Windowed reduction

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.

        +˝˘3↕ ⟨2,6,0,1,4,3⟩

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.

        -⟜(0»⊒) +` 3β€Ώ2β€Ώ1β€Ώ1

        (-ΛœΛβ‰ β†•0∾⊒) +` 3β€Ώ2β€Ώ1β€Ώ1

With Windows, we can modify the 3-element running sum from before to keep the length constant by starting with two zeros.

        (+˝≠↕(2β₯Š0)⊸∾) ⟨2,6,0,1,4,3⟩

## Symmetry

Let's look at the first example, paired with its [Transpose](transpose.md) (`⍉`).

        β‹ˆβŸœβ‰ 5↕"abcdefg"

Although the two arrays have different shapes, they're identical in the 3Γ—3 region where they overlap.

        ≑○(3β€Ώ3βŠΈβ†‘)βŸœβ‰ 5↕"abcdefg"

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"

        (β‰ "abcdefg") Β¬ 3

## Multiple dimensions

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.

            2↕["0123","abcd","ABCD"]

        <βŽ‰2 2↕["0123","abcd","ABCD"]

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:

        <βŽ‰2 2β€Ώ2↕["0123","abcd","ABCD"]

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.

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.

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`.