This release introduces Chebyshev approximation for computing functions of (large) matrices.
This release is not backwards compatible because some functions are reorganised: the content of `slq.py` and `decomp.py` has been collected in a new `lanczos.py`. See the changelog for concrete differences, and consult the documentation for where to find which function.
What's Changed
* Implement the Chebyshev recursion for computing matrix-function-vector products (draft) by pnkraemer in https://github.com/pnkraemer/matfree/pull/175
* Restructure lanczos-related modules by pnkraemer in https://github.com/pnkraemer/matfree/pull/176
* Merge decomposition-algorithms with decompose_fori_loop by pnkraemer in https://github.com/pnkraemer/matfree/pull/177
* Rename lanczos.integrand_* functions by pnkraemer in https://github.com/pnkraemer/matfree/pull/178
* Rename matfun.py to polynomial.py by pnkraemer in https://github.com/pnkraemer/matfree/pull/179
* Update the README to include new functionality by pnkraemer in https://github.com/pnkraemer/matfree/pull/180
**Full Changelog**: https://github.com/pnkraemer/matfree/compare/v0.0.13...v0.0.14