Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
c55b0172b26fcf0a0b8d5ef0b98c87128e0f6bdb
/
.
/
doc
/
snippets
/
Tutorial_AdvancedInitialization_Block.cpp
blob: 96e40acfbc4423609f8ddb21fb0249d9fbd8a91d [
file
] [
log
] [
blame
]
Brian Silverman
72890c2
2015-09-19 14:37:37 -0400
[
diff
] [
blame
]
1
MatrixXf
matA
(
2
,
2
);
2
matA
<<
1
,
2
,
3
,
4
;
3
MatrixXf
matB
(
4
,
4
);
4
matB
<<
matA
,
matA
/
10
,
matA
/
10
,
matA
;
5
std
::
cout
<<
matB
<<
std
::
endl
;