Rafael Guerra
Rafael Guerra
As per recommendation from @ChrisRackauckas in Julia [Discourse](https://discourse.julialang.org/t/plotting-differential-equations-solutions-with-varying-color/50884), the aim of this new issue is to allow plotting the differential equation solution (using the interpolation recipe), colored by the time...
Suggestion to make it more clear in the documentation that a function is required in QuadGK to evaluate the data and that for purely numerical input (e.g., as recorded by...
Running `@btime` multiple times, three of them shown below, outputs: 281.849 ns (7 allocations: 176 bytes) 279.452 ns (7 allocations: 176 bytes) 282.479 ns (7 allocations: 176 bytes) The observed...
The figure proportions are distorted when running @joa-quim 's GMT code from [Julia discourse](https://discourse.julialang.org/t/save-matrix-of-rgb-values-to-image-file-with-huge-pixels/47771/6) in Windows 10 (GMT6.1.1): ```julia using GMT im = ones(UInt8,2, 2, 3); im[1,1,1]=255; im[1,2,1]=255; im[1,1,2]=255; im[2,1,2]=255;...
What can be done to improve TensorCast's performance on the following nested reductions: ```julia using TensorCast, BenchmarkTools M = [i+j for i=1:4, j=0:4:12] B = [M[i:i+1, j:j+1] for i in...
Base `append!()` allows appending collections to a collection. For example below is it possible in `ElasticArrays` to append ([4, 5], [6, 7]) to previous array, in one go? ```julia using...
Please find herein some feature requests or wish list: - For large tables it would be very useful to be able to display (somewhere) the row and column numbers/names when...
How can we produce a scrollable Tree View using Mousetrap.jl, as in [this Gtk.jl example](https://discourse.julialang.org/t/listview-grouping-popup-window-examples/96092/7)