eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp~
2010-07-08 17:42:23 +01:00

27 lines
474 B
C++

#include <iostream>
#include <Eigen/Dense>
using namespace std;
using namespace Eigen;
int main()
{
Eigen::MatrixXf m(2,2);
m << 1, 2,
3, 4;
//get location of maximum
MatrixXf::Index maxRow, maxCol;
m.maxCoeff(&maxRow, &maxCol);
//get location of minimum
MatrixXf::Index minRow, minCol;
m.minCoeff(&minRow, &minCol);
cout << "Max at: " <<
maxRow << "," << maxCol << endl;
cout << "Min at: " <<
minRow << "," << minCol << endl;
}