cotila  1.2.1
A compile time linear algebra system
math.h
Go to the documentation of this file.
1 
5 #ifndef COTILA_SCALAR_MATH_H_
6 #define COTILA_SCALAR_MATH_H_
7 
8 #include <cotila/detail/type_traits.h>
9 #include <cotila/detail/assert.h>
10 #include <type_traits>
11 
12 namespace cotila {
13 
24 constexpr double sqrt(double x) {
25  if (x < 0)
26  throw "sqrt argument must be positive";
27  double prev = 0;
28  double est = (1 + x) / 2;
29  while (prev != est) {
30  prev = est;
31  est = (est + x / est) / 2;
32  }
33  return est;
34 }
35 
42 constexpr float sqrt(float x) { return float(sqrt(double(x))); }
43 
50 template <typename T> constexpr detail::remove_complex_t<T> abs(T x) {
51  COTILA_DETAIL_ASSERT_ARITHMETIC(T);
52  if constexpr (detail::is_complex_v<T>)
53  return sqrt(x.real() * x.real() + x.imag() * x.imag());
54  else
55  return x > 0 ? x : -x;
56 }
57 
65 constexpr double exponentiate(double x, int n) {
66  if (n == 0)
67  return 1;
68  if (n < 0) {
69  x = 1. / x;
70  n = -n;
71  }
72  double y = 1.;
73  while (n > 1) {
74  if (n % 2 == 0) {
75  n /= 2;
76  } else {
77  y *= x;
78  n = (n - 1) / 2;
79  }
80  x *= x;
81  }
82  return x * y;
83 }
84 
92 constexpr double nthroot(double x, int n) {
93  if (x < 0)
94  throw "nth root argument must be positive";
95  double prev = -1;
96  double est = 1;
97  while (prev != est) {
98  prev = est;
99  double dxk = 1. / n * (x / exponentiate(prev, n - 1) - prev);
100  est = prev + dxk;
101  }
102  return est;
103 }
104 
111 template <typename T> constexpr T conj(T x) {
112  COTILA_DETAIL_ASSERT_ARITHMETIC(T);
113  if constexpr (detail::is_complex_v<T>)
114  return {x.real(), -x.imag()};
115  else
116  return x;
117 }
118 
121 } // namespace cotila
122 
123 #endif // COTILA_SCALAR_MATH_H_
constexpr vector< detail::remove_complex_t< T >, N > abs(const vector< T, N > &v)
computes the elementwise absolute value
Definition: math.h:73
Definition: math.h:16
constexpr double nthroot(double x, int n)
computes the th root
Definition: math.h:92
constexpr double exponentiate(double x, int n)
computes exponents
Definition: math.h:65
constexpr vector< T, N > sqrt(const vector< T, N > &v)
computes the elementwise square root
Definition: math.h:38
constexpr vector< T, N > conj(const vector< T, N > &v)
computes the elementwise complex conjugate
Definition: math.h:27