Sign in
eigen
/
mirror
/
13a1f25da9d214f7a08b0bcaefae07fd2f7d2e46
/
.
/
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
;