public API
(
switch to internal
)
-
revision 3.6.7
casadi
core
runtime
casadi_interpn_weights.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_weights"
21
template
<
typename
T1>
22
void
casadi_interpn_weights(casadi_int ndim,
const
T1* grid,
const
casadi_int* offset,
const
T1* x, T1* alpha, casadi_int* index,
const
casadi_int* lookup_mode) {
// NOLINT(whitespace/line_length)
23
// Left index and fraction of interval
24
casadi_int i;
25
for
(i=0; i<ndim; ++i) {
26
casadi_int ng, j;
27
T1 xi;
28
const
T1* g;
29
// Grid point
30
xi = x ? x[i] : 0;
31
// Grid
32
g = grid + offset[i];
33
ng = offset[i+1]-offset[i];
34
// Find left index
35
j = index[i] = casadi_low(xi, g, ng, lookup_mode[i]);
36
// Get interpolation/extrapolation alpha
37
alpha[i] = (xi-g[j])/(g[j+1]-g[j]);
38
}
39
}