conditional build scripts with boost xor eigen

This commit is contained in:
nojhan 2012-07-09 16:26:19 +02:00
commit 766ac33c5a
11 changed files with 134 additions and 14 deletions

View file

@ -0,0 +1,15 @@
#include <iostream>
#include <Eigen/Dense>
using Eigen::MatrixXd;
int main()
{
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;
}