Gitiles
Code Review
Sign In
gerrit.openfyde.cn
/
chromium.googlesource.com
/
external
/
gitlab.com
/
libeigen
/
eigen
/
e5b490b6542c444aa8e263e50c50e09a4201c99f
/
.
/
doc
/
snippets
/
MatrixBase_applyOnTheLeft.cpp
blob: 6398c873ac55d9ae545735bb3f038151f8786ddf [
file
] [
log
] [
blame
]
Matrix3f
A
=
Matrix3f
::
Random
(
3
,
3
),
B
;
B
<<
0
,
1
,
0
,
0
,
0
,
1
,
1
,
0
,
0
;
cout
<<
"At start, A = "
<<
endl
<<
A
<<
endl
;
A
.
applyOnTheLeft
(
B
);
cout
<<
"After applyOnTheLeft, A = "
<<
endl
<<
A
<<
endl
;