Sign in
◑
Theme
eigen
/
mirror
/
431e4a913bcf7c37208361868b7e202a8a8f5e4d
/
.
/
doc
/
snippets
/
Matrix_resize_NoChange_int.cpp
blob: c86ee30bc792030739e5d0c604929a337d68d248 [
file
]
MatrixXd
m
(
3
,
4
);
m
.
resize
(
NoChange
,
5
);
cout
<<
"m: "
<<
m
.
rows
()
<<
" rows, "
<<
m
.
cols
()
<<
" cols"
<<
endl
;