Sign in
third-party-mirror
/
eigen
/
eae6db0ca08e15a56faa194349561649dde541dd
/
.
/
doc
/
snippets
/
Tutorial_AdvancedInitialization_Block.cpp
blob: 752c522a2780f88e21e41566de6526d3cfb0701a [
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
;