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
539 B
16 lines
539 B
#include <iostream>
|
|
#include <StormEigen/Dense>
|
|
|
|
using namespace std;
|
|
int main()
|
|
{
|
|
StormEigen::Matrix2d mat;
|
|
mat << 1, 2,
|
|
3, 4;
|
|
cout << "Here is mat.sum(): " << mat.sum() << endl;
|
|
cout << "Here is mat.prod(): " << mat.prod() << endl;
|
|
cout << "Here is mat.mean(): " << mat.mean() << endl;
|
|
cout << "Here is mat.minCoeff(): " << mat.minCoeff() << endl;
|
|
cout << "Here is mat.maxCoeff(): " << mat.maxCoeff() << endl;
|
|
cout << "Here is mat.trace(): " << mat.trace() << endl;
|
|
}
|