Sign in
eigen
/
mirror
/
63185be8b240ee1a9ef476af2fc06676d3d89fe0
/
.
/
doc
/
snippets
/
DirectionWise_replicate.cpp
blob: d92d4a3507ac5fce74c5dccfdcf7ba446725f4cd [
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
;