Christoph Ruegg
Christoph Ruegg
Thanks! Scheduled for v3.4 (sorry for the delay!)
That looks suspicious, thanks for reporting!
It turns out the mean is correct, but the samples return the number of trials (for reaching r successes) instead of the number of failures (until r successes are reached)....
Yes, unfortunately multidim is supported only with the MKL native provider at this point - despite of our design principle that all functionality must work also with the built-in managed...
This used to work. Maybe we need to use `libdl.dylib` instead of `libdl.so` to dynamically load the provider on newer OSX versions? I don't have a mac, so I cannot...
Just for reference, some existing sparse SVD routines with compatible license: - http://tedlab.mit.edu/~dr/SVDLIBC/ (C) - http://soi.stanford.edu/~rmunk/PROPACK/index.html (Fortran)
Continuous Distributions with redundant instance and static implementations: - Cauchy - Chi - ChiSquared - ContinuousUniform - Exponential - FisherSnedecor - InverseGamma - Laplace - LogNormal - Normal - Pareto...
Thanks for pointing out this somewhat gray area. The primary reason for having two versions is that the static one does have to do range checking while the instance one...
Indeed, we do exactly that in most distributions for the random number sampling, with the private static `SampleUnchecked` functions. The situation is almost the same there as with PDF/CDF, except...