function_taking_eigenbase.cpp
Go to the documentation of this file.
1 #include <iostream>
2 #include <Eigen/Core>
3 using namespace Eigen;
4 
5 template <typename Derived>
7 {
8  std::cout << "size (rows, cols): " << b.size() << " (" << b.rows()
9  << ", " << b.cols() << ")" << std::endl;
10 }
11 
12 int 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 }
Scalar * b
Definition: benchVecAdd.cpp:17
ArrayXcf v
Definition: Cwise_arg.cpp:1
Namespace containing all symbols from the Eigen library.
Definition: jet.h:637
void print_size(const EigenBase< Derived > &b)
EIGEN_DEVICE_FUNC Index cols() const
Definition: EigenBase.h:62
EIGEN_DEVICE_FUNC Index rows() const
Definition: EigenBase.h:59
EIGEN_DEVICE_FUNC Index size() const
Definition: EigenBase.h:66


gtsam
Author(s):
autogenerated on Sat May 8 2021 02:42:05