Sign in
eigen
/
mirror
/
92480ffd265475a25070b8ea9dfbc8536d038378
/
.
/
doc
/
snippets
/
Tutorial_solve_triangular_inplace.cpp
blob: 64ae4eea111155f54a9bd09752b862e5d1f346b5 [
file
]
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
;