Special function module (#221)

* [fix] Fixed intendation for flake8

* [feat] special module with Bessel functions added.

* [feat] init adapted.

* [tests] First test for special module added.

* [tests] Check kn special function derivative explicitly vs numerical
derivative of scipy function.

* [feat] Added remaining autograd scipy special functions to the special
module.

* [feat] Imports corrected, docstring added.
This commit is contained in:
Fabian Joswig 2024-01-07 17:22:05 +01:00 committed by GitHub
parent 1360942a7b
commit 5122e260ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 37 additions and 1 deletions

View file

@ -20,7 +20,7 @@ def print_config():
"pandas": pd.__version__}
for key, value in config.items():
print(f"{key : <10}\t {value}")
print(f"{key: <10}\t {value}")
def errorbar(x, y, axes=plt, **kwargs):