Sign in
eigen
/
mirror
/
4c49f07febb896a8276b4889ff2991dcbb886bf3
/
.
/
doc
/
snippets
/
Tutorial_AdvancedInitialization_Block.cpp
blob: 752c522a2780f88e21e41566de6526d3cfb0701a [
file
]
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
;