casadi_interpn_interpolate.hpp
1 //
2 // MIT No Attribution
3 //
4 // Copyright (C) 2010-2023 Joel Andersson, Joris Gillis, Moritz Diehl, KU Leuven.
5 //
6 // Permission is hereby granted, free of charge, to any person obtaining a copy of this
7 // software and associated documentation files (the "Software"), to deal in the Software
8 // without restriction, including without limitation the rights to use, copy, modify,
9 // merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
10 // permit persons to whom the Software is furnished to do so.
11 //
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
13 // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
14 // PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
15 // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
16 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
17 // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
18 //
19 
20 // SYMBOL "interpn_interpolate"
21 template<typename T1>
22 void casadi_interpn_interpolate(T1* res, casadi_int ndim, const casadi_int* offset, const T1* values, const T1* alpha, const casadi_int* index, const casadi_int* corner, T1* coeff, casadi_int m) { // NOLINT(whitespace/line_length)
23  T1 c;
24  casadi_int ld, i;
25  // Get weight and value for corner
26  c=1;
27  ld=1; // leading dimension
28  for (i=0; i<ndim; ++i) {
29  if (coeff) *coeff++ = c;
30  if (corner[i]) {
31  c *= alpha[i];
32  } else {
33  c *= 1-alpha[i];
34  }
35  values += (index[i]+corner[i])*ld*m;
36  ld *= offset[i+1]-offset[i];
37  }
38  if (coeff) {
39  for (i=0;i<m;++i) res[i] += values[i];
40  } else {
41  for (i=0;i<m;++i) res[i] += c*values[i];
42  }
43 }