Sign in
eigen
/
mirror
/
c21a80be3d0506587e73f7a5796df6e83967a934
/
.
/
doc
/
snippets
/
MatrixBase_replicate.cpp
blob: bffd102152eae53df633a2cbb87d993cf9e6a675 [
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
;