Eigen matrix library and a test program

Dependencies:   Eigen mbed

Revision:
1:ad6e79769c8f
Parent:
0:5971b11ad8ff
diff -r 5971b11ad8ff -r ad6e79769c8f main.cpp
--- a/main.cpp	Thu Oct 13 04:07:45 2016 +0000
+++ b/main.cpp	Thu Oct 13 08:15:23 2016 +0000
@@ -15,4 +15,5 @@
     Vector3f x = A.colPivHouseholderQr().solve(b);
     //Vector3f x = A.inverse() * b;
     cout << "The solution is:\n" << x << endl;
+    //printf("b[%g,%g,%g]\n", x(0),x(1),x(2));
 }