本征安装似乎可行,但我仍然无法使本征发挥作用


9

我正在尝试安装eigen,但似乎无法正常工作。

我做了:

sudo apt-get install libeigen3-dev

之后一切似乎都很好

dpkg -p libeigen3-dev

我得到:

Package: libeigen3-dev
Priority: extra
Section: libdevel
Installed-Size: 3718
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
Architecture: all
Source: eigen3
Version: 3.2.0-4
Depends: pkg-config
Suggests: libeigen3-doc
Size: 698062
Description: lightweight C++ template library for linear algebra
 Eigen 3 is a lightweight C++ template library for vector and matrix math,
 a.k.a. linear algebra.
 .
 Unlike most other linear algebra libraries, Eigen 3 focuses on the simple
 mathematical needs of applications: games and other OpenGL apps, spreadsheets
 and other office apps, etc. Eigen 3 is dedicated to providing optimal speed
 with GCC. A lot of improvements since 2-nd version of Eigen.
Original-Maintainer: Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
Homepage: http://eigen.tuxfamily.org

在我看来一切都很好。但是,当我尝试编译基本代码(在本教程中给出)时:

first_eigen.cpp

#include <iostream>
#include <Eigen/Dense>
using namespace Eigen;
int main()
{
  Matrix2d a;
  a << 1, 2,
  3, 4;
  MatrixXd b(2,2);
  b << 2, 3,
  1, 4;
  std::cout << "a + b =\n" << a + b << std::endl;
  std::cout << "a - b =\n" << a - b << std::endl;
  std::cout << "Doing a += b;" << std::endl;
  a += b;
  std::cout << "Now a =\n" << a << std::endl;
  Vector3d v(1,2,3);
  Vector3d w(1,0,0);
  std::cout << "-v + w - v =\n" << -v + w - v << std::endl;
}

我像这样在shell中运行它:

g++ -std=c++11 first_eigen.cpp -o my_exec

我收到以下错误:

first_eigen.cpp:2:23: fatal error: Eigen/Dense: No such file or directory
 #include <Eigen/Dense>
                       ^
compilation terminated.

所以看起来好像eigen没有安装。我想念什么?

Answers:


10

eigen3头文件在子目录/usr/include/eigen3

/usr/include/eigen3/Eigen/Array
/usr/include/eigen3/Eigen/Cholesky
/usr/include/eigen3/Eigen/CholmodSupport
/usr/include/eigen3/Eigen/Core
/usr/include/eigen3/Eigen/Dense
/usr/include/eigen3/Eigen/Eigen

因此,您将需要在编译器命令行上指定其他包含路径,例如

g++ -std=c++11 -I/usr/include/eigen3 first_eigen.cpp -o my_exec

另外(可能更便于携带),您可以使用pkg-config数据库自动进行包含,即

g++ -std=c++11 `pkg-config --cflags eigen3` first_eigen.cpp -o my_exec

4
您还可以在/ usr / local / include内建立到/ usr / include / eigen3 / Eigen的链接,这样就不必再次在g ++中使用任何额外的标志。为此,只需执行以下操作:sudo ln -s /usr/include/eigen3/Eigen /usr/local/include/Eigen
Akronix 2015年


0

请 查看/ usr / include中是否有一个名为“ Eigen”的文件夹。

我不知道本征和安装程序。但是开发人员经常会使用版本来命名。

如果/ usr / include目录中有一个“ Eigen3”文件夹,则应将代码更改为:

#include <Eigen3/Dense>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.