intel MKL:MKL lib(仅适用于C程序)中使用什么函数来求解Ax=lambda*Bx(特征值)

发布于 2024-12-10 13:01:10 字数 67 浏览 3 评论 0原文

Ax=lambda*Bx

如何使用 MKL 求 lambda 的值?

Ax=lambda*Bx

how to find the value of lambda using MKL?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瑾夏年华 2024-12-17 13:01:10

调用的最佳函数取决于矩阵的结构和数据类型。英特尔提供 关于各种特征值解决方案的函数选择指南

要设置您的输入,请参阅
MKL 关于从 c 调用的注释

这是一个片段:

从 C 语言程序调用 LAPACK 例程时,请确保遵循 Fortran 规则:按“地址”传递变量,而不是按“值”传递。请务必以 Fortran 风格存储数据,即数据按列优先顺序存储,而不是按行优先顺序存储。

The best function to call depends on the structure and data types of your matrices. Intel provides this guide on function selection for various eigen value solutions .

To set up your inputs, consult the
MKL Notes on calling from c

Here's a snippet:

When calling LAPACK routines from C-language programs, make sure that you follow Fortran rules: Pass variables by 'address' as opposed to pass by 'value'. Be sure to store your data Fortran-style, i.e. data stored column-major rather than row-major order.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文