emsr / polynomial

A C++ polynomials and related algorithms.
6 stars 3 forks source link

Make a complex version of Jenkins Traub. #2

Closed emsr closed 3 years ago

emsr commented 6 years ago

Integrate it with the real version if you can.

This code is called RPOLY traditionally. at least the real version is.

emsr commented 5 years ago

The complex version is called cpoly. There are Free versions scattered about. I'm hacking one now. I ultimately hope for convergence. The complex quadratic factorizer may help genericize. I should make a complex quadratic solver.

emsr commented 3 years ago

Done. Template specialization. The internal code is necessarily very different from the real case though.