mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-06 17:17:14 +08:00
15 lines
399 B
C++
15 lines
399 B
C++
#include <Eigen/Dense>
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
using namespace Eigen;
|
|
|
|
int main() {
|
|
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.bdcSvd(ComputeThinU | ComputeThinV).solve(b) << endl;
|
|
}
|