source:
pacpussensors/trunk/Vislab/lib3dv/eigen/Eigen-install/doc/snippets/compile_tut_matrix_assignment_resizing.cpp@
136
| Last change on this file since 136 was 136, checked in by , 9 years ago | |
|---|---|
| File size: 361 bytes | |
| Line | |
|---|---|
| 1 | #include <Eigen/Dense> |
| 2 | #include <iostream> |
| 3 | |
| 4 | using namespace Eigen; |
| 5 | using namespace std; |
| 6 | |
| 7 | int main(int, char**) |
| 8 | { |
| 9 | cout.precision(3); |
| 10 | MatrixXf a(2,2); |
| 11 | std::cout << "a is of size " << a.rows() << "x" << a.cols() << std::endl; |
| 12 | MatrixXf b(3,3); |
| 13 | a = b; |
| 14 | std::cout << "a is now of size " << a.rows() << "x" << a.cols() << std::endl; |
| 15 | |
| 16 | return 0; |
| 17 | } |
Note:
See TracBrowser
for help on using the repository browser.
