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