Ashton Bradley

Results 37 issues of Ashton Bradley

I have some feedback from teaching a 300 level course using Pluto in 2021/2022, to do with the behaviour for opening files. I am happy to try to contribute to...

## Details When I run test there are the obvious errors for animations, shown below. In practice, when I try to make an animation by e.g. ```julia anim = @animate...

bug

These timings are surprising to me. It seems that MEASURE is using the fastest plan, but the other flags are not. The others don't know about threads, judging by cpu...

I want to zero pad before transforming. If my data is real then: ```julia julia> using FFTW, LazyArrays, FillArrays julia> x=randn(4,5) 4×5 Array{Float64,2}: -0.378035 0.670349 1.12253 -1.36774 -0.173416 1.75424 0.318407...

trying https://symbolics.juliasymbolics.org/dev/tutorials/auto_parallel/ on m1 max, I get 15s for `prob` and many minutes for `fastprob`. ```julia julia> versioninfo() Julia Version 1.8.0-beta3 Commit 3e092a2521 (2022-03-29 15:42 UTC) Platform Info: OS: macOS...

Symbolics doesn't seem to be able to evaluate/define complex exponentials ```julia @variables x exp(im*x) MethodError: no method matching decompose(::Symbolics.Num) Closest candidates are: decompose(!Matched::Integer) at /Applications/Julia-1.7.app/Contents/Resources/julia/share/julia/base/float.jl:642 decompose(!Matched::Rational) at /Applications/Julia-1.7.app/Contents/Resources/julia/share/julia/base/rational.jl:515 decompose(!Matched::FixedPointNumbers.Normed) at...

My package loads a data type from file using JLD2 @load joinpath(@__DIR__,"exactcore.jld2") ψi where the type is `Interpolations.GriddedInterpolation{Float64, 1, Float64, Interpolations.Gridded{Interpolations.Linear}, Tuple{Vector{Float64}}}` I don't export the Interpolation, but I do...

Some of the images on the landing page don't link to code. I think only the stream plot examples suffer from this: after click gives

It seems that whenever I click on a link the left menu, the positioning of the menu list resets to the top of the list rather than holding the position...

The readme example https://github.com/JuliaApproximation/ApproxFun.jl#sampling is very slow, taking several minutes on my i5 laptop. The output is also now different from the readme figure. Running ```julia f = abs(Fun(sin, -5..5))...