如何在使用犰狳的 Visual Studio 2008 项目中使用 LAPACK

发布于 2024-08-19 22:32:47 字数 563 浏览 9 评论 0原文

我正在尝试使用开源库 http://arma.sourceforge.net 进行线性代数计算。 Armadillo 中的一些函数,例如 pinv 使用 LAPACK。我编写了一段非常简单的代码来使用犰狳来计算 pinv,但它会产生运行时错误。这可能是因为我的 sln 文件中没有 LAPACK 链接器标志。

#include <iostream>

#include "armadillo"

using namespace arma;
using namespace std;


int main(int argc, char** argv)
  {

 mat A = rand<mat>(4,5);
 mat pinverse = pinv(A); 
 A.print("A=");
 return 0;

  }

I'm trying to use an open source library http://arma.sourceforge.net for linear algebra calculations. Some of the functions in Armadillo like pinv use LAPACK. I've written a very simple piece of code to use Armadillo to calculate pinv, but it produces a runtime error. This is probably because I do not have LAPACK linker flags in the sln file.

#include <iostream>

#include "armadillo"

using namespace arma;
using namespace std;


int main(int argc, char** argv)
  {

 mat A = rand<mat>(4,5);
 mat pinverse = pinv(A); 
 A.print("A=");
 return 0;

  }

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

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

发布评论

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

评论(2

忆伤 2024-08-26 22:32:47

首先,你有 LAPACK 库吗?如果没有,请获取一个(有多种实现可供选择)。否则,请检查该库的文档或自述文件。这里没有任何特定于 Visual C++ 的内容。

通常所需要的只是:
将“lapack.lib”添加到链接器输入(在项目设置中)。

First things first, do you have LAPACK library? If not, get one (there's a number of implementations to choose). Otherwise, check that library's documentation or readme. There's nothing specific to Visual C++ here.

Usually all that's needed is:
add "lapack.lib" to linker input (in project settings).

左岸枫 2024-08-26 22:32:47

为了使用 LAPACK,假设您将库链接到您的项目,您还需要在 Armadillo 的 config.hpp 中取消注释 #define ARMA_USE_LAPACK。 BLAS 也是如此。

In order to use LAPACK, assuming you are linking the libs to your project, you also need to uncomment #define ARMA_USE_LAPACK in Armadillo's config.hpp. Same thing goes for BLAS.

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