eigen.MatrixXd.rows is a member function in the C++ Eigen library that returns the number of rows in a MatrixXd object. The MatrixXd class is a dynamic-sized matrix with elements of type double. This function can be used to determine the number of rows in a MatrixXd object, allowing for efficient manipulation of the matrix dimensions in C++ programs.
C++ (Cpp) MatrixXd::rows - 30 examples found. These are the top rated real world C++ (Cpp) examples of eigen::MatrixXd::rows extracted from open source projects. You can rate examples to help us improve the quality of examples.