Tamas K. Papp
Tamas K. Papp
Also, replacing `vardim` with `dim` would be more consistent with `Statistics`.
It would be great to have a section in the manual that explains the change. While I understand that it was extensively discussed in #481, not all users are prepared...
Found a minor issue, fix is in wentasah/EmacsVterm.jl#2.
In general I like the fact that we have a single person who maintains a coherent design. I don't think think that an interface package like Tables.jl should prioritize quick...
Thanks for opening an issue. An MWE is ```julia using TensorCast: @cast B = ones(3, 3) @cast A[row][col] := B[row, col] ``` I think that wrapping each function form `f(args...)`...
Yes, I can get what I want by that and then Ctrl-scrolling, but it would be more convenient to do it directly. Just a thought, feel free to close.
Just an explanation why I find the above finicky: zooming out (Ctrl-scroll) resets the aspect ratio to whatever fits in height when the plot fills the window vertically. Then, to...
You mean Ctrl-V-scroll and Ctrl-H-scroll? That could work for guitar/piano players so I am OK with it :wink: Or just V-scroll and H-scroll? That would be perfect.
We no longer use `acos` internally, so this is less of an issue. With arguments *near* the boundary, the error is nicely bounded, so it should not matter. Perhaps document...
Since Julia 1.4, ```julia mymid(a, b) = a + (b - a + 1) ÷ 2 A[mymid(begin, end)] ```