Blame complex/TODO

Packit 67cb25
# -*- org -*-
Packit 67cb25
#+CATEGORY: complex
Packit 67cb25
Packit 67cb25
* Complex polynomial solvers (Got Newton-Mueller from
Packit 67cb25
jotahtin@cc.hut.fi, still to add (BJG)).
Packit 67cb25
Packit 67cb25
* The asymptotic behavior of the secondary functions (sec, csc, cot,
Packit 67cb25
etc) can overflow because of expressions like cosh(x) / D , where D =
Packit 67cb25
cosh^2 which is computed prior to the division.  This should by
Packit 67cb25
special casing "small" vs "large" arguments as has been done for the
Packit 67cb25
sin,cos,tan versions.
Packit 67cb25
Packit 67cb25
* Perhaps there is something useful in LCY65 L. A. Lyusternik,
Packit 67cb25
O. A. Chervonenkis, and A. R. Yanpol'skii, Handbook for computing
Packit 67cb25
elementary functions, International Series of Monographs in Pure and
Packit 67cb25
Applied Mathematics, vol. 76, Pergamon Press, Oxford, 1965.
Packit 67cb25
Packit 67cb25
* Comparing the Complex Arithmetic routines in Section 5.5 of Numerical Recipes 
Packit 67cb25
gsl_complex_div() uses simple complex division while 5.5.5 has a more
Packit 67cb25
sophisticated one that avoids underflow/overflow.
Packit 67cb25