Sign in
eigen
/
mirror
/
d0b7b9d0d321905776326ce99c5c3ff3d48f4ce7
/
.
/
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
;