当前位置:   article > 正文

Eigen库使用之矩阵的最大/小值及其位置_maxcoeff

maxcoeff

Eigen库矩阵运算特别方便,类似于Matlab 矩阵运算(类似于matlab函数使用),可以结合C++进行编程。

在Eigen库中,使用maxCoeff()和minCoeff()函数,可以方便计算矩阵中的最大值和最小值,但是若想返回矩阵中最大值和最小值的位置,需要给定相关参数 Index;

  1. MatrixXd::Index maxRow, maxCol;
  2. MatrixXd::Index minRow, minCol;

返回位置索引,位置从0开始,

  1. #include<Eigen/Core>
  2. #include<iostream>
  3. using namespace std;
  4. using namespace Eigen;
  5. int main
  6. {
  7. MatrixXd::Index maxRow, maxCol;
  8. MatrixXd::Index minRow, minCol;
  9. MatrixXd mMat(4,4);
  10. mMat << 11, 10, 13, 15,
  11. 3, 24, 56, 1,
  12. 2, 12, 45, 0,
  13. 8, 5, 6, 4;
  14. double min = mMat.minCoeff(&minRow,&minCol);
  15. double max = mMat.maxCoeff(&maxRow,&maxCol);
  16. cout << "Max = \n" << max << endl;
  17. cout << "Min = \n" << min << endl;
  18. cout << "minRow = " << minRow << "minCol = " <<minCol<<endl;
  19. cout << "maxRow = " << maxRow << "maxCol = " << maxCol << endl;
  20. return 0;
  21. }

输出结果:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/79242
推荐阅读
相关标签
  

闽ICP备14008679号