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.
16 lines
358 B
16 lines
358 B
#include <iostream>
|
|
#include <StormEigen/Dense>
|
|
|
|
using namespace std;
|
|
using namespace StormEigen;
|
|
|
|
int main()
|
|
{
|
|
Matrix3f A;
|
|
A << 1, 2, 1,
|
|
2, 1, 0,
|
|
-1, 1, 2;
|
|
cout << "Here is the matrix A:\n" << A << endl;
|
|
cout << "The determinant of A is " << A.determinant() << endl;
|
|
cout << "The inverse of A is:\n" << A.inverse() << endl;
|
|
}
|