Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要计算对称的复杂矩阵的行列式。矩阵的大小范围从 500*500 到 2000*2000。有什么子程序可以调用吗?顺便说一下,我用ifort编译。
最简单的方法是按照此处所述进行 LU 分解。我建议使用LAPACK来完成这项任务......
This article有一些代码C可以为实值对称矩阵执行此操作,因此您需要进行交换dspsv以zspsv处理双精度复数矩阵。
C
dspsv
zspsv