Lapack matrix algebra in go

I’ve noticed that the real matrix algebra is well-documented, but the complex matrix algebra is not written properly (or is incorrect/incomplete). Specifically, no matrix algebra is provided for complex non-Hermitian matrices.

Perhaps you can provide some package/godoc examples of what you are talking about? If you are finding something incorrect/incomplete, it’s probably best to open an issue in whatever repo you have found the problem.

Thank you for the reply.
The float64 interface for LAPACK and BLAS is well-defined, but it currently lacks complex matrix algebra. The complex interface is incomplete, missing critical functions like complex matrix diagonalization(zgeev), multiplication(zgemm), and exponentiation. Furthermore, necessary properties such as Toeplitz matrix generation and the conversion from Toeplitz to Circulant matrices are also absent.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.