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

using Eigen::MatrixXd;

int main(int, char *[])
{
  MatrixXd m(2,2);
  m(0,0) = 3;
  m(1,0) = 2.5;
  m(0,1) = -1;
  m(1,1) = m(1,0) + m(0,1);
  std::cout << m << std::endl;
}