I'm trying to find a way to compute roots of a polynomial with complex coefficients in Java (i.e. an equivalent of what is ridiculously easily done with roots() in MATLAB).
I'm ready to recode a root finding algorithm that builds the companion matrix and then uses generalized eigenvalue decomposition to find the roots, but for this I would need a library that handles complex-valued matrix operations.
I browsed for a while and nothing convincing seems to be available out there, which I think is rather weird. Then, I'd like to ask you:
Do you know a (stable) Java library that performs root finding on polynomials defined by COMPLEX coefficients?
Do you know a (stable) Java library that performs evd, svd, inverse, etc. on COMPLEX-valued matrices?
Note: I already looked at JAMA (doesn't handle complex), Michael Thomas Flanagan's Java Scientific Library (not available anymore), colt (doesn't seem to handle complex), Efficient Java Matrix Library (no complex either), DDogleg Numerics (does not handle polynomial with complex coefficients), JScience (not clear if evd is available) and common-math from Apache (not clear if they allow for complex matrices, and if yes, if evd is available).