source: pacpussensors/trunk/Vislab/lib3dv/eigen/doc/snippets/Matrix_resize_int.cpp@ 136

Last change on this file since 136 was 136, checked in by ldecherf, 7 years ago

Doc

File size: 235 bytes
Line 
1VectorXd v(10);
2v.resize(3);
3RowVector3d w;
4w.resize(3); // this is legal, but has no effect
5cout << "v: " << v.rows() << " rows, " << v.cols() << " cols" << endl;
6cout << "w: " << w.rows() << " rows, " << w.cols() << " cols" << endl;
Note: See TracBrowser for help on using the repository browser.