eigen をインストールしようとしていますが、動作しないようです。
やった:
Sudo apt-get install libeigen3-dev
そして、すべてがうまくいったようです
dpkg -p libeigen3-dev
私は得る:
Package: libeigen3-dev
Priority: extra
Section: libdevel
Installed-Size: 3718
Maintainer: Ubuntu Developers <[email protected]>
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 <[email protected]>
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;
}
このようにシェルで実行します:
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
がインストールされていないようです。私は何が欠けていますか?
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
インクルードを変更します
#include <eigen3/Eigen/Dense>
Pls。/usr/includeに「Eigen」という名前のフォルダーがあるかどうかを確認します。
Eigenとインストールルーチンがわかりません。しかし、多くの場合、devのインクルードにはバージョンが付けられています。
/ usr/includeディレクトリーに「Eigen3」フォルダーがある場合、コードを次のように変更する必要があります。
#include <Eigen3/Dense>