Nick

Results 190 comments of Nick

> if someone would like to work with me on a rewrite of the library I could mentor them and we could design it together perhaps 1 or 2 days...

I'm using the language from Corless's book [A Graduate Introduction to Numerical Analysis: From a viewpoint of backward error](https://www.amazon.com/Graduate-Introduction-Numerical-Methods-Viewpoint-ebook/dp/B00H5IOGR8/); also it's Definition 1.4 of your link, no? If the usage...

Here's Corless on the topic: > As we do throughout this book, from our a posteriori backward error analysis point of view, we then interpret the residual as a backward...

The interpolant is the solution, in Corless's language.

Feature request: Expose the secret key so that we can use argon2 password hashing in a more secure mode.

I have built a python interpreter with AddressSanitizer, and rerun this example, compiling with `-fsanitize=address -fsanitize=undefined -g`: ``` (venv) ~/r/build ❯❯❯ python3 Python 3.9.9 (main, Jan 6 2022, 13:44:43) [Clang...

> Doing what MATLAB does and calculating coefficients for arbitrary members of a wavelet family would be very neat. It can be done, but it's slow, even for Daubechies. [Here's...

@HDembinski : Hugely useful discussion, thanks! I dropped the interquartile range into boost.math a couple days ago, so perhaps a two-pass recommendation for future users might be: ``` using boost::math::statistics::interquartile_range;...

@HDembinski : There are tons of splines in Boost.Math. Presumably one of any of the functions in `boost/math/interpolators` would do?