Sign in
third-party-mirror
/
eigen
/
2571273647cdf6673639ebe9b3aa3237c1e7a822
/
.
/
doc
/
snippets
/
Matrix_resize_NoChange_int.cpp
blob: c86ee30bc792030739e5d0c604929a337d68d248 [
file
] [
log
] [
blame
]
MatrixXd
m
(
3
,
4
);
m
.
resize
(
NoChange
,
5
);
cout
<<
"m: "
<<
m
.
rows
()
<<
" rows, "
<<
m
.
cols
()
<<
" cols"
<<
endl
;