david-macmahon
david-macmahon
While we're wishing, a keyboard shortcut to toggle the state of Live docs would be nice
While we're wishing, a keyboard shortcut to toggle the state of Live docs would be nice
> fails when you try and save anything else (the file is corrupted). I saved a plot to `plot.png` and MacOS Preview said it was corrupted, but `file plot.png` reported...
FWIW, I found that `savefig("plot.png")` still saves the plot as a proper PNG file.
That's better as it removes the dependency on StaticArrays (though have to change `'\0'` to `UInt8(0)`), but I was hoping for an existing function that does this. I discovered that...
I'm writing a Plots recipe and would like to support user specified rounding for tick labels, but because of this issue it ends up being somewhat complicated: ```julia julia> x...
I just realized that to create my own rounding function with a method for values of type `Quantity` means that I have to depend on Unitful rather than having the...
I can see why avoiding scalar indexing for `copyto!` is non-trivial with views in general, but it would be great to have `copyto!` avoid non-scalar indexing for contiguous views. One...
I completely agree about not wanting to support all kinds of CPU arrays, but IMHO memory contiguous views seem like an important enough subset of CPU arrays to be worthy...
FWIW, I was able to work around this issue (for my usage of `plan_brfft`) by defining this method: ```julia AbstractFFTs.plan_brfft(A::CuArray, d::Integer, region; kwargs...) = plan_brfft(A, d, region) ```