Gitiles
Code Review
Sign In
gerrit.openfyde.cn
/
chromium.googlesource.com
/
external
/
gitlab.com
/
libeigen
/
eigen
/
cd83f34d3a709d4e89c98a96342b075742816d3f
/
.
/
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
;