a9550c2b70
Structure now more closely follow https://packaging.python.org/ To build docs: python setup.py build_sphinx -c docs -b html,latex make -C build/sphinx/latex all-pdf
6 lines
207 B
Python
6 lines
207 B
Python
# Airy function Bi(x), Bi'(x) and int_0^x Bi(t) dt on the real line
|
|
f = airybi
|
|
f_diff = lambda z: airybi(z, derivative=1)
|
|
f_int = lambda z: airybi(z, derivative=-1)
|
|
plot([f, f_diff, f_int], [-10,2], [-1,2])
|