Sign in
eigen
/
mirror
/
4b325d6b13854a9c996f34e6864f2b6bff762bfc
/
.
/
doc
/
snippets
/
Matrix_variadic_ctor_cxx11.cpp
blob: 04238a2761cf269bfa0de2a066bb93c2aaf2b1dc [
file
]
// SPDX-FileCopyrightText: The Eigen Authors
// SPDX-License-Identifier: MPL-2.0
Matrix
<
int
,
1
,
6
>
a
(
1
,
2
,
3
,
4
,
5
,
6
);
Matrix
<
int
,
3
,
1
>
b
{
1
,
2
,
3
};
cout
<<
a
<<
"\n\n"
<<
b
<<
endl
;