Sign in
third-party-mirror
/
eigen
/
2571273647cdf6673639ebe9b3aa3237c1e7a822
/
.
/
doc
/
snippets
/
Tutorial_std_sort.cpp
blob: cde2a6f1b4c142dcf71cfe6840190329e27b428e [
file
] [
log
] [
blame
]
Array4i
v
=
Array4i
::
Random
().
abs
();
cout
<<
"Here is the initial vector v:\n"
<<
v
.
transpose
()
<<
"\n"
;
std
::
sort
(
v
.
begin
(),
v
.
end
());
cout
<<
"Here is the sorted vector v:\n"
<<
v
.
transpose
()
<<
"\n"
;