Sign in
third-party-mirror
/
eigen
/
2571273647cdf6673639ebe9b3aa3237c1e7a822
/
.
/
doc
/
snippets
/
tut_arithmetic_transpose_inplace.cpp
blob: dbf8bc4a5d3956287ad62c0d80ddaf26dbc79a75 [
file
] [
log
] [
blame
]
MatrixXf
a
(
2
,
3
);
a
<<
1
,
2
,
3
,
4
,
5
,
6
;
cout
<<
"Here is the initial matrix a:\n"
<<
a
<<
endl
;
a
.
transposeInPlace
();
cout
<<
"and after being transposed:\n"
<<
a
<<
endl
;