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.
Ax=lambda*Bx
如何使用 MKL 找到 lambda 的值?
调用的最佳函数取决于矩阵的结构和数据类型。英特尔为各种特征值解决方案提供了此功能选择指南。
要设置您的输入,请参阅 关于从 c 调用的 MKL 注释
这是一个片段:
从 C 语言程序调用 LAPACK 例程时,请确保遵循 Fortran 规则:通过“地址”传递变量而不是通过“值”传递。请务必以 Fortran 样式存储您的数据,即以列为主而不是行为主的顺序存储数据。