Sign in
third-party-mirror
/
eigen
/
f6c457cdc27f232d7cf7f4f9b801aa8c3f9f18c6
/
.
/
doc
/
snippets
/
DirectionWise_replicate.cpp
blob: c448307e1fd8906bba54d0541504112bc1228913 [
file
] [
log
] [
blame
]
MatrixXi
m
=
MatrixXi
::
Random
(
2
,
3
);
cout
<<
"Here is the matrix m:"
<<
endl
<<
m
<<
endl
;
cout
<<
"m.colwise().replicate<3>() = ..."
<<
endl
;
cout
<<
m
.
colwise
().
replicate
<
3
>()
<<
endl
;