Ashton Bradley
Ashton Bradley
On MacOS, 1.8.0-rc1 Intel, ctrl-C does not interrupt safely anymore. An error that never recovers to terminal: ```julia ^Cfatal: error thrown and no exception handler available. InterruptException() ijl_task_get_next at /Applications/Julia-1.8.app/Contents/Resources/julia/lib/julia/libjulia-internal.1.8.dylib...
markdown for empty cell: It would be great to have `ctrl+m` on the list (since it works), and in the `shift+ctrl+?` list in Pluto
this doesn't seem to work on macos (using updated original post), as figures don't appear. Changing to `Page(exportable=true)` improves things somewhat in that plots appear. But slider interactivity doesn't update.
wow this is super exciting!
also https://github.com/JuliaPlots/Makie.jl/issues/1967 evident in these examples https://lazarusa.github.io/BeautifulMakie/ScattersLines/MultipleMulticoloredLineCbarAround/ https://lazarusa.github.io/BeautifulMakie/ScattersLines/latexSample/
> > I added the ability to manually specify the unroll factor in v0.3.8, via specifying `unroll = U` or `tile = (U,T)` where U and T are integer literals...
I've got the same problem. Is there going to be a fix for this? Or is it being left for 2.0 release?
Hi Mikael, thanks for your comments. I do need a fast FHT for degree 30-300 as it is the main bottleneck of a time evolution algorithm that my group uses...
Ok interesting, I see I had missed some important parts of `ApproxFun`. Thanks all for your input. Regarding comments above, my function is a sum of Hermite polynomials times `exp(-x.^2/2)`....
@MikaelSlevinsky , here is a result (seems to work!) ```julia using ApproxFun, FastTransforms, BenchmarkTools import FastTransforms: Butterfly N=256 # Get the actual matrix from the plan in ApproxFun.plan_transform(::Hermite(),rand(256)), say. PlanHerm...