Tell me more ×
Computational Science Stack Exchange is a question and answer site for scientists using computers to solve scientific problems. It's 100% free, no registration required.

Where can I find a library to solve a sparse complex matrix equation iteratively in C. So far I've only found libraries for direct solution to complex systems, and libraries for iterative solutions to real systems, but no solvers for iterative solutions to complex systems

share|improve this question
1  
Good answer by Bernardo, but I wanted to point out that Jack Dongarra maintains a list of software for linear algebra problems that you might want to consult for future questions of this nature. – Aron Ahmadia Jun 28 '12 at 13:42
Quite useful. Thank you. – LinearAlg Jun 29 '12 at 9:18

1 Answer

up vote 6 down vote accepted

PETSc (http://www.mcs.anl.gov/petsc)

But you have to build PETSc specifically for solving complex systems.

Have a look at installation instructions for complex version: http://www.mcs.anl.gov/petsc/documentation/installation.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.