Eigen有哪些需要注意的操作Eigen有哪些需要注意的操作
1. Eigen有哪些行操作,列操作,块操作,怎样写会更高效?行操作:matrix.row(n);matrix.topRows(n);matrix.bottomRows(n);列操作:matrix.col(n);matrix.leftCols(n);matirx.rightCols(n);块操作:动态矩阵版本:matrix.block(i,j,m,n); // 大小为(m,n),起始于(i,j)matrix.topLeftCorner(m,n);matrix.bottomLeftC