Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp 244 B

12345678910111213
  1. #include <iostream>
  2. #include <Eigen/Dense>
  3. using namespace std;
  4. int main()
  5. {
  6. Eigen::MatrixXf mat(2,4);
  7. mat << 1, 2, 6, 9,
  8. 3, 1, 7, 2;
  9. std::cout << "Row's maximum: " << std::endl
  10. << mat.rowwise().maxCoeff() << std::endl;
  11. }