diff options
author | Andreas Müller <andreas.mueller@ost.ch> | 2022-05-19 17:29:08 +0200 |
---|---|---|
committer | Andreas Müller <andreas.mueller@ost.ch> | 2022-05-19 17:29:08 +0200 |
commit | 786bba412cfab833ebb52fd64b738010a982c4c1 (patch) | |
tree | 857ce647e10a4156cd0e8ac58e1e37f29943e5d6 /buch/chapters | |
parent | some local changes (diff) | |
parent | Merge pull request #13 from enezerdem/master (diff) | |
download | SeminarSpezielleFunktionen-786bba412cfab833ebb52fd64b738010a982c4c1.tar.gz SeminarSpezielleFunktionen-786bba412cfab833ebb52fd64b738010a982c4c1.zip |
Merge branch 'master' of github.com:AndreasFMueller/SeminarSpezielleFunktionen
Diffstat (limited to 'buch/chapters')
-rw-r--r-- | buch/chapters/050-differential/uebungsaufgaben/airy.cpp | 4 | ||||
-rw-r--r-- | buch/chapters/110-elliptisch/ellintegral.tex | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/buch/chapters/050-differential/uebungsaufgaben/airy.cpp b/buch/chapters/050-differential/uebungsaufgaben/airy.cpp index e4df8e1..eb5c6be 100644 --- a/buch/chapters/050-differential/uebungsaufgaben/airy.cpp +++ b/buch/chapters/050-differential/uebungsaufgaben/airy.cpp @@ -44,8 +44,8 @@ double h0f1(double c, double x) { double f1(double x) { // unfortunately, gsl_sf_hyperg_0F1 does not work if c<1, because // it uses a relation to the bessel functions - //return gsl_sf_hyperg_0F1(2/3, x*x*x/9.); - return h0f1(2./3., x*x*x/9.); + return gsl_sf_hyperg_0F1(2/3, x*x*x/9.); + //return h0f1(2./3., x*x*x/9.); } double f2(double x) { diff --git a/buch/chapters/110-elliptisch/ellintegral.tex b/buch/chapters/110-elliptisch/ellintegral.tex index 4cb2ba3..3acce2f 100644 --- a/buch/chapters/110-elliptisch/ellintegral.tex +++ b/buch/chapters/110-elliptisch/ellintegral.tex @@ -651,7 +651,7 @@ werden, dass $1-k'^2=k^2$ ist. \begin{definition} Ist $0\le k\le 1$ der Modul eines elliptischen Integrals, dann heisst -$k' = \sqrt{1-k^2}$ er {\em Komplementärmodul} oder {\em Komplement +$k' = \sqrt{1-k^2}$ der {\em Komplementärmodul} oder {\em Komplement des Moduls}. Es ist $k^2+k'^2=1$. \end{definition} |