6 lines
135 B
C++
6 lines
135 B
C++
// SPDX-FileCopyrightText: The Eigen Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
MatrixXd m{{1, 2, 3}, {4, 5, 6}};
|
|
cout << m << endl;
|