Nick
Nick
Forgive me if this is somewhere in the docs; I searched around and didn't find anything. Is there a convenience API to apply the [Freedman-Diaconis rule](https://en.wikipedia.org/wiki/Freedman%E2%80%93Diaconis_rule) or some other bin-size...
Using `Unitful v1.9.1` and `Distributions v0.25.23`, it appears `Unitful` numbers are not supported: ```julia julia> using Unitful julia> using Distributions julia> μ = 1.0u"s" julia> σ = 0.01u"s" julia> Normal(μ,...
Currently, xtensor can be installed via Conda. However, it feels as though the installation mechanisms provided by `pip` have grown very advanced with good design, and hence it is useful...
Numerous warnings are being emitted by `gcc-10` builds of ADIOS2: ``` Warning: Rank mismatch between actual argument at (1) and actual argument at (2) (rank-1 and scalar) [361/912] Building Fortran...
Suppose I have a code example `foo.cpp` ```cpp int main() { distracting_preliminaries(); relevant_code(); irrelevant_teardown(); } ``` When I use `\inputminted{cpp}{foo.cpp}`, I get all the code included, not just the `relevant_code()`....
When running `flamegraph.pl` on RHEL 8.1, I encounter the following error: ``` $ perf script | ~/FlameGraph/stackcollapse-perf.pl | ~/FlameGraph/flamegraph.pl > flame.svg Can't locate open.pm in @INC (you may need to...
We have a use case for more fine-grained testing of floating point numbers in Boost.Math, and were wondering if there's any interest in adding two new tests to Boost.Test: `CHECK_MOLLIFIED_CLOSE`...
Are there any plans to support the [Web Authentication API](https://www.w3.org/TR/webauthn/) in this library?
The best pseudo-random number generator in the C++ standard library is probably the Mersenne twister, which has well-known disadvantages such as being pretty memory heavy. Do you know if anyone...
In `boost/libs/math/test/univariate_statistics_test.cpp`, we see the following warning using g++-9: ``` ../../../boost/numeric/ublas/detail/iterator.hpp:268:27: warning: implicitly-declared ‘constexpr boost::numeric::ublas::vector::iterator::iterator(const boost::numeric::ublas::vector::iterator&)’ is deprecated [-Wdeprecated-copy] 268 | return tmp -= n; ```