Emanuele Pagone

Results 49 comments of Emanuele Pagone

Many thanks. Would it be possible to make it available for Ubuntu Focal 20.04, please?

Here is a MWE: ```dot digraph dpi_bug { graph [dpi = 300]; #comment this line or set dpi = 72 and the rendering is ok A -> B; } ```...

Thanks for looking into my issue. > Sometimes these output are large files like several hundred kb! This makes even a better case for using data blocks (expanded description follows)....

Thank you. Unfortunately, I do not see an opportunity in the next months, but I will try to have a look at this when things clear up a bit more.

Would the factorial and the binomial coefficient belong to this too?

I like the idea of `nth_root(x,n)`. I have been on the verge of proposing it myself a couple of times. Related discussion: #214.

Prior art. * GSL has a [comprehensive section](https://www.gnu.org/software/gsl/doc/html/randist.html) of random number distributions that should be available in Fortran though the [fgsl](https://github.com/reinh-bader/fgsl) module. This should be stable and well maintained. *...

> In my code, I use the ratio of uniforms (2 uniforms per single gaussian) algo, but this review suggests a Ziggurat algorithm as > accurate (ie especially producing the...

This is highly subjective but FWIW, I would prefer `pop` for the functions that return the deleted element, simply because I imagine that if I "pop" something out I still...

Based on my experience with past discussions, we are trying to provide a familiar interface to the user of `stdlib` following well-established conventions from other languages (like python, for example)....