libeigen/eigen!2509 Closes #2868 Co-authored-by: Rasmus Munk Larsen <rmlarsen@gmail.com>
7 lines
194 B
C++
7 lines
194 B
C++
// SPDX-FileCopyrightText: The Eigen Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
MatrixXd m(3, 4);
|
|
m.resize(NoChange, 5);
|
|
cout << "m: " << m.rows() << " rows, " << m.cols() << " cols" << endl;
|