Sign in
third-party-mirror
/
eigen
/
2d1422c771ec474cd2aaa68de5fadd89cf2ad315
/
.
/
doc
/
snippets
/
SelfAdjointView_eigenvalues.cpp
blob: 8cef6d8a4b865dbb0b1bd16408995905cd537c17 [
file
]
MatrixXd
ones
=
MatrixXd
::
Ones
(
3
,
3
);
VectorXd
eivals
=
ones
.
selfadjointView
<
Lower
>().
eigenvalues
();
cout
<<
"The eigenvalues of the 3x3 matrix of ones are:"
<<
endl
<<
eivals
<<
endl
;