mpi_cpp_tools
math.hpp
Go to the documentation of this file.
1 
9 #pragma once
10 
11 #include <cmath>
12 #include <algorithm>
13 
14 namespace mct
15 {
16 
17 double clamp(const double &value, const double &limit_a, const double &limit_b)
18 {
19  if (limit_b > limit_a)
20  return std::max(limit_a, std::min(value, limit_b));
21 
22  return std::max(limit_b, std::min(value, limit_a));
23 }
24 
25 template <typename Vector>
26 Vector clamp(const Vector &vector,
27  const double &limit_a, const double &limit_b)
28 {
29  Vector clamped_vector = vector;
30 
31  for(size_t i = 0; i < clamped_vector.size(); i++)
32  {
33  clamped_vector[i] = clamp(clamped_vector[i], limit_a, limit_b);
34  }
35  return clamped_vector;
36 }
37 
38 template <typename Vector>
39 void append_to_vector(Vector &vector,
40  const double &element)
41 {
42  vector.conservativeResize(vector.size() + 1);
43  vector[vector.size() - 1] = element;
44 }
45 
46 template <typename Matrix>
47 void append_rows_to_matrix(Matrix &matrix,
48  const Matrix &rows)
49 {
50  if (matrix.cols() != rows.cols())
51  throw std::invalid_argument("need to have same number of cols");
52 
53  matrix.conservativeResize(matrix.rows() + rows.rows(), matrix.cols());
54  matrix.bottomRows(rows.rows()) = rows;
55 }
56 
57 bool approx_equal(double x, double y, double epsilon = 1e-10)
58 {
59  return (std::fabs(x - y) < epsilon);
60 }
61 
62 template <typename Vector>
63 bool contains(Vector v, double x)
64 {
65  for (size_t i = 0; i < v.size(); i++)
66  {
67  if (mct::approx_equal(v[i], x))
68  {
69  return true;
70  }
71  }
72  return false;
73 }
74 
75 } // namespace mct
Definition: basic_tools.hpp:14