2010-10-15 21:44:43 +08:00
|
|
|
#include <iostream>
|
|
|
|
|
#include <Eigen/Dense>
|
|
|
|
|
|
|
|
|
|
int main()
|
|
|
|
|
{
|
2022-02-02 08:15:44 +08:00
|
|
|
MatrixXf A = MatrixXf::Random(3, 2);
|
|
|
|
|
cout << "Here is the matrix A:\n" << A << endl;
|
|
|
|
|
VectorXf b = VectorXf::Random(3);
|
|
|
|
|
cout << "Here is the right hand side b:\n" << b << endl;
|
|
|
|
|
cout << "The least-squares solution is:\n"
|
|
|
|
|
<< A.template bdcSvd<ComputeThinU | ComputeThinV>().solve(b) << endl;
|
2010-10-15 21:44:43 +08:00
|
|
|
}
|