Sign in
nest-open-source
/
nest-cam
/
v350
/
eigen
/
9d75fdbcd2b5a2fdab03a859ddefda95ce1217ed
/
.
/
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
;