Added Block Operations tutorial and code examples

This commit is contained in:
Carlos Becker
2010-06-28 18:42:59 +01:00
parent 82e2e8b13a
commit 97889a7f46
6 changed files with 405 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#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 << "2nd Row: "
<< m.row(1) << std::endl;
}