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

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

Doc

File size: 168 bytes
Line 
1MatrixXf mat = MatrixXf::Random(2, 3);
2std::cout << mat << std::endl << std::endl;
3mat = (MatrixXf(2,2) << 0, 1, 1, 0).finished() * mat;
4std::cout << mat << std::endl;
Note: See TracBrowser for help on using the repository browser.