blob: d7dc97583ba58109060ea6081fd81bba68cacf2d [file]
// SPDX-FileCopyrightText: The Eigen Authors
// SPDX-License-Identifier: MPL-2.0
#include <iostream>
#include <Eigen/Dense>
int main() {
Eigen::Matrix4d m;
m.resize(4, 4); // no operation
std::cout << "The matrix m is of size " << m.rows() << "x" << m.cols() << std::endl;
}