gtsam
3rdparty
Eigen
doc
examples
TutorialLinAlgSVDSolve.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
MatrixXf
A
= MatrixXf::Random(3, 2);
10
cout <<
"Here is the matrix A:\n"
<<
A
<< endl;
11
VectorXf
b
= VectorXf::Random(3);
12
cout <<
"Here is the right hand side b:\n"
<<
b
<< endl;
13
cout <<
"The least-squares solution is:\n"
14
<<
A
.bdcSvd(
ComputeThinU
|
ComputeThinV
).solve(
b
) << endl;
15
}
Eigen
Namespace containing all symbols from the Eigen library.
Definition:
jet.h:637
b
Scalar * b
Definition:
benchVecAdd.cpp:17
A
Matrix< SCALARA, Dynamic, Dynamic, opt_A > A
Definition:
bench_gemm.cpp:48
Eigen::ComputeThinU
@ ComputeThinU
Definition:
Constants.h:395
main
int main()
Definition:
TutorialLinAlgSVDSolve.cpp:7
Eigen::ComputeThinV
@ ComputeThinV
Definition:
Constants.h:399
std
Definition:
BFloat16.h:88
gtsam
Author(s):
autogenerated on Sat Nov 16 2024 04:09:36