Martín D. Maas

Results 25 comments of Martín D. Maas

Hi, I found this issue. Of course, one possible workaround is to interpolate and plot ;-) ``` using Plots using Interpolations function Interp2D(data, factor) IC = CubicSplineInterpolation((axes(data,1), axes(data,2)), data) finerx...

> > I'd like to think about how to incorporate this into Plots.jl, but the package is too large, and I can't find a way to start a PR. Any...

Hi! I came across this issue because I think it'd be really nice to improve the VSCode interface to PackageCompiler. I've added a few lines of code to PackageCompiler.jl in...

Hi! Good job on this package. I'm interested in joining efforts, if the very long-term idea is to create a pure-julia version of CGAL ;-). I'm not an expert in...

Hi @juliohm. Indeed, ExactPredicates.jl could be integrated at no cost, just by `using ExactPredicates`. As for PolygonInBounds.jl, I believe the package is a port of a matlab code which is...

Hi @Umut-Can-Physics, The problem was that `finerx` and `finery` were in the wrong order. So this should work: ``` using Plots using Interpolations function Interp2D(data, factor) IC = CubicSplineInterpolation((axes(data,1), axes(data,2)),...

Interpolation with a factor of 16 looks pretty good ![heatmap_interpolate](https://github.com/JuliaPlots/Plots.jl/assets/6352520/f1ba7085-7046-4bb5-b2c9-d8835dda37c8)

Hm, it looked better on VSCode before saving the PNG... I guess one could save the file with PDF format...

> Sure, prototyping in a recipe is a good idea. I've been playing around with this a little bit... I guess Plots.jl should support both interpolated heatmaps with given vectors...

I'm prototyping a recipe here: [pcolor](https://github.com/mdmaas/pcolor.jl). Given that both Matlab and Python have "pcolor" which is an alias for heatmap, I thought it was a good idea to use that...