Files
eigen/doc/snippets/Matrix_resize_int_NoChange.cpp
2026-05-04 00:36:12 +00:00

7 lines
194 B
C++

// SPDX-FileCopyrightText: The Eigen Authors
// SPDX-License-Identifier: MPL-2.0
MatrixXd m(3, 4);
m.resize(5, NoChange);
cout << "m: " << m.rows() << " rows, " << m.cols() << " cols" << endl;