You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While `ReshapedOneD` is not itself an AbstractArray (due to needing to
handle IIR types too), it often contains one. In such ases, there are
obvious mechanisms to improve the display.
With this PR, we get:
```julia
julia> kern1, kern2 = kernelfactors((centered([1, 2, 1]), [-1, 0, 1]));
julia> kern1
Reshaped 1d stencil with axes (-1:1, 0:0):
1
2
1
julia> kern2
Reshaped 1d stencil with axes (0:0, 1:3):
-1 0 1
```
0 commit comments