source: pacpussensors/trunk/Vislab/lib3dv/eigen/doc/examples/function_taking_eigenbase.cpp@ 136

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

Doc

File size: 418 bytes
Line 
1#include <iostream>
2#include <Eigen/Core>
3using namespace Eigen;
4
5template <typename Derived>
6void print_size(const EigenBase<Derived>& b)
7{
8 std::cout << "size (rows, cols): " << b.size() << " (" << b.rows()
9 << ", " << b.cols() << ")" << std::endl;
10}
11
12int main()
13{
14 Vector3f v;
15 print_size(v);
16 // v.asDiagonal() returns a 3x3 diagonal matrix pseudo-expression
17 print_size(v.asDiagonal());
18}
Note: See TracBrowser for help on using the repository browser.