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
7 lines
202 B
Python
7 lines
202 B
Python
# Hankel function H1_n(x) on the real line for n=0,1,2,3
|
|
h0 = lambda x: hankel1(0,x)
|
|
h1 = lambda x: hankel1(1,x)
|
|
h2 = lambda x: hankel1(2,x)
|
|
h3 = lambda x: hankel1(3,x)
|
|
plot([h0,h1,h2,h3],[0,6],[-2,1])
|