0.3.0
Loading...
Searching...
No Matches
Sort.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
13
14#pragma once
15
16#include <vector>
17#include <algorithm>
18#include <numeric>
19#include "util/Eigen.hpp"
20
21namespace NAV
22{
23
29template<typename T, typename Compare>
30std::vector<size_t> sort_permutation(const std::vector<T>& vec, Compare compare)
31{
32 std::vector<size_t> p(vec.size());
33 std::iota(p.begin(), p.end(), 0); // NOLINT(boost-use-ranges,modernize-use-ranges) // ranges::iota is C++23 and not supported yet
34 std::ranges::sort(p, [&](size_t i, size_t j) { return compare(vec[i], vec[j]); });
35 return p;
36}
37
43template<typename Derived, typename Compare>
44std::vector<size_t> sort_permutation(const Eigen::MatrixBase<Derived>& vec, Compare compare)
45{
46 std::vector<size_t> p(static_cast<size_t>(vec.rows()));
47 std::iota(p.begin(), p.end(), 0); // NOLINT(boost-use-ranges,modernize-use-ranges) // ranges::iota is C++23 and not supported yet
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))); });
49 return p;
50}
51
57template<typename T>
58std::vector<T> apply_permutation(const std::vector<T>& vec, const std::vector<size_t>& p)
59{
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]; });
63 return sorted_vec;
64}
65
71template<typename Scalar, int Size>
72Eigen::Vector<Scalar, Size> apply_permutation(const Eigen::Vector<Scalar, Size>& vec, const std::vector<size_t>& p)
73{
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)); });
77 return sorted;
78}
79
85template<typename Derived>
86typename Derived::PlainObject apply_permutation_rowwise(const Eigen::MatrixBase<Derived>& m, const std::vector<size_t>& p)
87{
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)); });
91 return sorted;
92}
93
99template<typename Derived>
100typename Derived::PlainObject apply_permutation_colwise(const Eigen::MatrixBase<Derived>& m, const std::vector<size_t>& p)
101{
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)); });
105 return sorted;
106}
107
111template<typename T>
112void apply_permutation_in_place(std::vector<T>& vec, const std::vector<size_t>& p)
113{
114 std::vector<bool> done(p.size());
115 for (size_t i = 0; i < p.size(); ++i)
116 {
117 if (done[i])
118 {
119 continue;
120 }
121 done[i] = true;
122 size_t prev_j = i;
123 size_t j = p[i];
124 while (i != j)
125 {
126 std::swap(vec[prev_j], vec[j]);
127 done[j] = true;
128 prev_j = j;
129 j = p[j];
130 }
131 }
132}
133
138template<typename Scalar, int Size>
139void apply_permutation_in_place(Eigen::Vector<Scalar, Size>& vec, const std::vector<size_t>& p)
140{
141 std::vector<bool> done(p.size());
142 for (size_t i = 0; i < p.size(); ++i)
143 {
144 if (done[i])
145 {
146 continue;
147 }
148 done[i] = true;
149 size_t prev_j = i;
150 size_t j = p[i];
151 while (i != j)
152 {
153 std::swap(vec(static_cast<Eigen::Index>(prev_j)), vec(static_cast<Eigen::Index>(j)));
154 done[j] = true;
155 prev_j = j;
156 j = p[j];
157 }
158 }
159}
160
165template<typename Scalar, int Rows, int Cols>
166void apply_permutation_rowwise_in_place(Eigen::Matrix<Scalar, Rows, Cols>& m, const std::vector<size_t>& p)
167{
168 std::vector<bool> done(p.size());
169 for (size_t i = 0; i < p.size(); ++i)
170 {
171 if (done[i])
172 {
173 continue;
174 }
175 done[i] = true;
176 size_t prev_j = i;
177 size_t j = p[i];
178 while (i != j)
179 {
180 m.row(static_cast<Eigen::Index>(prev_j)).swap(m.row(static_cast<Eigen::Index>(j)));
181 done[j] = true;
182 prev_j = j;
183 j = p[j];
184 }
185 }
186}
187
192template<typename Scalar, int Rows, int Cols>
193void apply_permutation_colwise_in_place(Eigen::Matrix<Scalar, Rows, Cols>& m, const std::vector<size_t>& p)
194{
195 std::vector<bool> done(p.size());
196 for (size_t i = 0; i < p.size(); ++i)
197 {
198 if (done[i])
199 {
200 continue;
201 }
202 done[i] = true;
203 size_t prev_j = i;
204 size_t j = p[i];
205 while (i != j)
206 {
207 m.col(static_cast<Eigen::Index>(prev_j)).swap(m.col(static_cast<Eigen::Index>(j)));
208 done[j] = true;
209 prev_j = j;
210 j = p[j];
211 }
212 }
213}
214
215} // namespace NAV
Vector space operations.
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