aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/examples/Tutorial_BlockOperations_print_block.cpp
blob: a2d0db8646e47c3cd14067ab1060c4290d36ac70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <Eigen/Dense>
#include <iostream>
using namespace Eigen;

int main()
{
  MatrixXf m(3,3);
  
  m << 1,2,3,
       4,5,6,
       7,8,9;
     
  std::cout << m.block(0,0,2,2) << std::endl;
}