Added more redux types/examples in tutorial and fixed some display issues

This commit is contained in:
Carlos Becker
2010-07-08 18:16:39 +01:00
parent cb3aad1d91
commit 951da96f14
4 changed files with 122 additions and 9 deletions

View File

@@ -0,0 +1,24 @@
#include <Eigen/Dense>
#include <iostream>
using namespace std;
using namespace Eigen;
int main()
{
MatrixXf m(2,2), n(2,2);
m << 0,2,
3,4;
n << 1,2,
3,4;
cout << "m.all() = " << m.all() << endl;
cout << "m.any() = " << m.any() << endl;
cout << "m.count() = " << m.count() << endl;
cout << endl;
cout << "n.all() = " << n.all() << endl;
cout << "n.any() = " << n.any() << endl;
cout << "n.count() = " << n.count() << endl;
}