Sign in
third-party-mirror
/
eigen
/
9dfc0afdf1dbe8217c8421c061834d195ae40fae
/
.
/
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
;