Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
189376f1eb10ecaca8a0b1ea00eba0e6f995da27
/
.
/
doc
/
snippets
/
Tutorial_commainit_01b.cpp
blob: 2adb2e213f25aa6fbd607d37b3379caa9dff062b [
file
] [
log
] [
blame
]
Matrix3f
m
;
m
.
row
(
0
)
<<
1
,
2
,
3
;
m
.
block
(
1
,
0
,
2
,
2
)
<<
4
,
5
,
7
,
8
;
m
.
col
(
2
).
tail
(
2
)
<<
6
,
9
;
std
::
cout
<<
m
;