DenseBase_middleCols_int.cpp 250 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
#include <Eigen/Core>
#include <iostream>

int main() {
  int const N = 5;
  Eigen::MatrixXi A(N, N);
  A.setRandom();
  std::cout << "A =\n" << A << '\n' << std::endl;
  std::cout << "A(1..3,:) =\n" << A.middleCols(1, 3) << std::endl;
  return 0;
}