You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
235 B
7 lines
235 B
2 years ago
|
VectorXd v(10);
|
||
|
v.resize(3);
|
||
|
RowVector3d w;
|
||
|
w.resize(3); // this is legal, but has no effect
|
||
|
cout << "v: " << v.rows() << " rows, " << v.cols() << " cols" << endl;
|
||
|
cout << "w: " << w.rows() << " rows, " << w.cols() << " cols" << endl;
|