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.
14 lines
381 B
14 lines
381 B
#include <iostream>
|
|
#include <StormEigen/Dense>
|
|
|
|
using namespace std;
|
|
using namespace StormEigen;
|
|
|
|
int main()
|
|
{
|
|
MatrixXd A = MatrixXd::Random(100,100);
|
|
MatrixXd b = MatrixXd::Random(100,50);
|
|
MatrixXd x = A.fullPivLu().solve(b);
|
|
double relative_error = (A*x - b).norm() / b.norm(); // norm() is L2 norm
|
|
cout << "The relative error is:\n" << relative_error << endl;
|
|
}
|