29template<
typename T,
typename Compare>
32 std::vector<size_t> p(vec.size());
33 std::iota(p.begin(), p.end(), 0);
34 std::ranges::sort(p, [&](
size_t i,
size_t j) {
return compare(vec[i], vec[j]); });
43template<
typename Derived,
typename Compare>
44std::vector<size_t>
sort_permutation(
const Eigen::MatrixBase<Derived>& vec, Compare compare)
46 std::vector<size_t> p(
static_cast<size_t>(vec.rows()));
47 std::iota(p.begin(), p.end(), 0);
48 std::ranges::sort(p, [&](
size_t i,
size_t j) {
return compare(vec(
static_cast<Eigen::Index
>(i)), vec(
static_cast<Eigen::Index
>(j))); });
60 std::vector<T> sorted_vec(vec.size());
61 std::transform(p.begin(), p.end(), sorted_vec.begin(),
62 [&](
size_t i) { return vec[i]; });
71template<
typename Scalar,
int Size>
72Eigen::Vector<Scalar, Size>
apply_permutation(
const Eigen::Vector<Scalar, Size>& vec,
const std::vector<size_t>& p)
74 Eigen::Vector<Scalar, Size> sorted = vec;
75 std::transform(p.begin(), p.end(), sorted.begin(),
76 [&](
size_t i) { return vec(static_cast<Eigen::Index>(i)); });
85template<
typename Derived>
88 typename Derived::PlainObject sorted = m;
89 std::transform(p.begin(), p.end(), sorted.rowwise().begin(),
90 [&](
size_t i) { return m.row(static_cast<Eigen::Index>(i)); });
99template<
typename Derived>
102 typename Derived::PlainObject sorted = m;
103 std::transform(p.begin(), p.end(), sorted.colwise().begin(),
104 [&](
size_t i) { return m.col(static_cast<Eigen::Index>(i)); });
114 std::vector<bool> done(p.size());
115 for (
size_t i = 0; i < p.size(); ++i)
126 std::swap(vec[prev_j], vec[j]);
138template<
typename Scalar,
int Size>
141 std::vector<bool> done(p.size());
142 for (
size_t i = 0; i < p.size(); ++i)
153 std::swap(vec(
static_cast<Eigen::Index
>(prev_j)), vec(
static_cast<Eigen::Index
>(j)));
165template<
typename Scalar,
int Rows,
int Cols>
168 std::vector<bool> done(p.size());
169 for (
size_t i = 0; i < p.size(); ++i)
180 m.row(
static_cast<Eigen::Index
>(prev_j)).swap(m.row(
static_cast<Eigen::Index
>(j)));
192template<
typename Scalar,
int Rows,
int Cols>
195 std::vector<bool> done(p.size());
196 for (
size_t i = 0; i < p.size(); ++i)
207 m.col(
static_cast<Eigen::Index
>(prev_j)).swap(m.col(
static_cast<Eigen::Index
>(j)));
void apply_permutation_rowwise_in_place(Eigen::Matrix< Scalar, Rows, Cols > &m, const std::vector< size_t > &p)
Sort a matrix row-wise with a permutation.
Definition Sort.hpp:166
std::vector< T > apply_permutation(const std::vector< T > &vec, const std::vector< size_t > &p)
Sort a std::vector with a permutation.
Definition Sort.hpp:58
Derived::PlainObject apply_permutation_rowwise(const Eigen::MatrixBase< Derived > &m, const std::vector< size_t > &p)
Sort a matrix row-wise with a permutation.
Definition Sort.hpp:86
std::vector< size_t > sort_permutation(const std::vector< T > &vec, Compare compare)
Gives the permutation to sort the std::vector.
Definition Sort.hpp:30
Derived::PlainObject apply_permutation_colwise(const Eigen::MatrixBase< Derived > &m, const std::vector< size_t > &p)
Sort a matrix col-wise with a permutation.
Definition Sort.hpp:100
void apply_permutation_in_place(std::vector< T > &vec, const std::vector< size_t > &p)
Sort a std::vector with a permutation.
Definition Sort.hpp:112
void apply_permutation_colwise_in_place(Eigen::Matrix< Scalar, Rows, Cols > &m, const std::vector< size_t > &p)
Sort a matrix col-wise with a permutation.
Definition Sort.hpp:193