Fredrik Bagge Carlson

Results 317 issues of Fredrik Bagge Carlson

From discourse: Every time i click on the inteface, a bunch of text is printed in the terminal: ``` [4069:0206/155146.687870:ERROR:buffer_manager.cc(488)] [.DisplayCompositor]GL ERROR :GL_INVALID_OPERATION : glBufferData:

bug

From discourse I seem to loose interactivity in the plots if I use ElectronDisplay, in the sense that I can no longer zoom into plots etc. with Plots.jl backends that...

enhancement

https://discourse.julialang.org/t/odd-behavior-from-controlsystemidentification-and-jump-on-version-1-6/58714/2 `oftype` is the main suspect.

@JuliaRegistrator register()

Many operations can be sped up by considering batch evaluation of `f/g/dg`, i.e., ``` A*x[i] + B*u[i] -> A*X + B*U ``` See LTI implementation [here](https://github.com/JuliaControl/ControlSystems.jl/pull/284/files#diff-3b12b3af9359d6e001f655679b68699cR222) Maybe an option that...

Reference implementation of backwards filtering, forward guiding with https://arxiv.org/abs/1712.03807 https://gist.github.com/mschauer/6f8e0f57ce0b15eef9f86390d0631df4 @mschauer

Almost never used but causes a lot of allocations. Get rid of permuting `propagate_particles` and have inplace resample instead.

Hey and thanks for this package! Do you have any idea on how to incorporate different weights for each datapoints, in the sense that datapoints with low weights should be...

enhancement
question

If a generalized generated function has a vararg input the following error occurs ```julia @gg function f(x...) quote x end end julia> f(1,2,3) ERROR: MethodError: Cannot `convert` an object of...

enhancement

I added cuckoo search My implementation does not follow the style in the package, hence the WIP status of this PR. Feel free to update this PR as much as...