Sign in
eigen
/
mirror
/
44b16f48cb5c5e7b9f5ed2b4d6a14ed14ab302e1
/
.
/
doc
/
snippets
/
DirectionWise_replicate.cpp
blob: c448307e1fd8906bba54d0541504112bc1228913 [
file
]
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
;