Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
189376f1eb10ecaca8a0b1ea00eba0e6f995da27
/
.
/
doc
/
snippets
/
ComplexEigenSolver_eigenvectors.cpp
blob: bb1c2ccf14b48b8fce1c584abf71281c1107104d [
file
] [
log
] [
blame
]
MatrixXcf
ones
=
MatrixXcf
::
Ones
(
3
,
3
);
ComplexEigenSolver
<
MatrixXcf
>
ces
(
ones
);
cout
<<
"The first eigenvector of the 3x3 matrix of ones is:"
<<
endl
<<
ces
.
eigenvectors
().
col
(
1
)
<<
endl
;