如何在使用犰狳的 Visual Studio 2008 项目中使用 LAPACK
我正在尝试使用开源库 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,你有 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).
为了使用 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.