Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

complex-Hermitian support? #142

Open
stevengj opened this issue Apr 14, 2022 · 1 comment
Open

complex-Hermitian support? #142

stevengj opened this issue Apr 14, 2022 · 1 comment

Comments

@stevengj
Copy link
Member

Looking at the source code, it seems that it explicitly checks for the real-symmetric case, but doesn't do anything for the analogous complex-Hermitian case. Is this a limitation of the underlying ARPACK library?

sym = !iscmplx && issymmetric(A) && issymmetric(B)

@andreasnoack
Copy link
Member

Late here but this is an ARPACK limitation. See section 3.9 of http://li.mit.edu/Archive/Activities/Archive/CourseWork/Ju_Li/MITCourses/18.335/Doc/ARPACK/Lehoucq97.pdf

The reverse communication interface subroutine for the double precision complex eigenvalue problem is znaupd . This routine is to be used for both Hermitian and non-Hermitian problems....

There is little computational penalty for using the non-Hermitian routines in this case. The only additional cost is to compute eigenvalues of a Hessenberg rather than a tridiagonal matrix. For the problem configurations this software is designed to solve, the size of these matrices are small enough that the differences in computational cost are negligible compared to the major ${\cal O}(n)$ work that is required.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants