Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
72890c2da170577883e6431bd92d612716a31b85
/
.
/
doc
/
snippets
/
Tutorial_AdvancedInitialization_Block.cpp
blob: 96e40acfbc4423609f8ddb21fb0249d9fbd8a91d [
file
] [
log
] [
blame
]
MatrixXf
matA
(
2
,
2
);
matA
<<
1
,
2
,
3
,
4
;
MatrixXf
matB
(
4
,
4
);
matB
<<
matA
,
matA
/
10
,
matA
/
10
,
matA
;
std
::
cout
<<
matB
<<
std
::
endl
;