You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
418 B
15 lines
418 B
#include <iostream>
|
|
#include <StormEigen/Dense>
|
|
|
|
using namespace std;
|
|
using namespace StormEigen;
|
|
|
|
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.jacobiSvd(ComputeThinU | ComputeThinV).solve(b) << endl;
|
|
}
|