eigen/doc/snippets/Array_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++

ArrayXXi a {
{1, 2, 3},
{3, 4, 5}
};
cout << a << endl;