Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在弄清楚如何在 Eigen 运行时设置 MatrixXd 的行和列时遇到了一些麻烦。谁能指点我一些文档或提供一些有关如何执行此操作的指示?
谢谢。
您可以使用 方法在运行时定义 MatrixXd 大小resize(nrow, ncol)。您可以在此链接中阅读有关调整动态矩阵大小的更多信息及其API 定义。
resize(nrow, ncol)