Sign in
eigen
/
mirror
/
2a90653395022152a0eb116064fd0ed53244a6c5
/
.
/
doc
/
snippets
/
MatrixBase_replicate.cpp
blob: 3ce52bcd5dba51c843dc4a0fda5f0a955640271e [
file
] [
log
] [
blame
]
MatrixXi
m
=
MatrixXi
::
Random
(
2
,
3
);
cout
<<
"Here is the matrix m:"
<<
endl
<<
m
<<
endl
;
cout
<<
"m.replicate<3,2>() = ..."
<<
endl
;
cout
<<
m
.
replicate
<
3
,
2
>()
<<
endl
;