gtsam
3rdparty
Eigen
doc
examples
TutorialLinAlgExSolveColPivHouseholderQR.cpp
Go to the documentation of this file.
1
#include <iostream>
2
#include <Eigen/Dense>
3
4
using namespace
std
;
5
using namespace
Eigen
;
6
7
int
main
()
8
{
9
Matrix3f
A
;
10
Vector3f
b
;
11
A
<< 1,2,3, 4,5,6, 7,8,10;
12
b
<< 3, 3, 4;
13
cout <<
"Here is the matrix A:\n"
<<
A
<< endl;
14
cout <<
"Here is the vector b:\n"
<<
b
<< endl;
15
Vector3f
x
=
A
.colPivHouseholderQr().solve(
b
);
16
cout <<
"The solution is:\n"
<<
x
<< endl;
17
}
Eigen
Namespace containing all symbols from the Eigen library.
Definition:
jet.h:637
b
Scalar * b
Definition:
benchVecAdd.cpp:17
x
set noclip points set clip one set noclip two set bar set border lt lw set xdata set ydata set zdata set x2data set y2data set boxwidth set dummy x
Definition:
gnuplot_common_settings.hh:12
A
Matrix< SCALARA, Dynamic, Dynamic, opt_A > A
Definition:
bench_gemm.cpp:48
std
Definition:
BFloat16.h:88
main
int main()
Definition:
TutorialLinAlgExSolveColPivHouseholderQR.cpp:7
gtsam
Author(s):
autogenerated on Sat Nov 16 2024 04:09:36