mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-27 07:29:52 +08:00
7 lines
169 B
C++
7 lines
169 B
C++
Matrix3f A;
|
|
Vector3f b;
|
|
A << 1,2,3, 0,5,6, 0,0,10;
|
|
b << 3, 3, 4;
|
|
A.triangularView<UpperTriangular>().solveInPlace(b);
|
|
cout << "The solution is:" << endl << b << endl;
|