gtsam
3rdparty
Eigen
doc
examples
TutorialLinAlgSelfAdjointEigenSolver.cpp
Go to the documentation of this file.
1
#include <iostream>
2
#include <Eigen/Dense>
3
4
using namespace
std
;
5
using namespace
Eigen
;
6
7
int
main
()
8
{
9
Matrix2f
A
;
10
A
<< 1, 2, 2, 3;
11
cout <<
"Here is the matrix A:\n"
<<
A
<< endl;
12
SelfAdjointEigenSolver<Matrix2f>
eigensolver
(
A
);
13
if
(
eigensolver
.info() !=
Success
) abort();
14
cout <<
"The eigenvalues of A are:\n"
<<
eigensolver
.eigenvalues() << endl;
15
cout <<
"Here's a matrix whose columns are eigenvectors of A \n"
16
<<
"corresponding to these eigenvalues:\n"
17
<<
eigensolver
.eigenvectors() << endl;
18
}
Eigen
Namespace containing all symbols from the Eigen library.
Definition:
jet.h:637
Eigen::Success
@ Success
Definition:
Constants.h:442
A
Matrix< SCALARA, Dynamic, Dynamic, opt_A > A
Definition:
bench_gemm.cpp:48
Eigen::SelfAdjointEigenSolver
Computes eigenvalues and eigenvectors of selfadjoint matrices.
Definition:
SelfAdjointEigenSolver.h:76
main
int main()
Definition:
TutorialLinAlgSelfAdjointEigenSolver.cpp:7
std
Definition:
BFloat16.h:88
eigensolver
void eigensolver(const MatrixType &m)
Definition:
eigensolver_complex.cpp:72
gtsam
Author(s):
autogenerated on Sat Nov 16 2024 04:09:36