Sign in
eigen
/
mirror
/
206b5e39723c51eaa9550db04d459ebd07604415
/
.
/
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
;