blob: 9d13f22ec11b9be9447a3c913695d999552a09c1 [file] [log] [blame]
Brian Silverman72890c22015-09-19 14:37:37 -04001Matrix3f A;
2Vector3f b;
3A << 1,2,3, 0,5,6, 0,0,10;
4b << 3, 3, 4;
5cout << "Here is the matrix A:" << endl << A << endl;
6cout << "Here is the vector b:" << endl << b << endl;
7Vector3f x = A.triangularView<Upper>().solve(b);
8cout << "The solution is:" << endl << x << endl;