repo.or.cz
/
librepilot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merged in f5soh/librepilot/update_credits (pull request #529)
[librepilot.git]
/
ground
/
gcs
/
src
/
libs
/
eigen
/
doc
/
snippets
/
MatrixBase_applyOnTheLeft.cpp
blob
6398c873ac55d9ae545735bb3f038151f8786ddf
1
Matrix3f A
=
Matrix3f
::
Random
(
3
,
3
),
B
;
2
B
<<
0
,
1
,
0
,
3
0
,
0
,
1
,
4
1
,
0
,
0
;
5
cout
<<
"At start, A = "
<<
endl
<<
A
<<
endl
;
6
A
.
applyOnTheLeft
(
B
);
7
cout
<<
"After applyOnTheLeft, A = "
<<
endl
<<
A
<<
endl
;