eigen/doc/snippets/Matrix_initializer_list_23_cxx11.cpp
Aaron Franke 5c22c7a7de Make file formatting comply with POSIX and Unix standards
UTF-8, LF, no BOM, and newlines at the end of files
2020-03-23 18:09:02 +00:00

6 lines
60 B
C++

MatrixXd m {
{1, 2, 3},
{4, 5, 6}
};
cout << m << endl;