|
template<class CT > |
static void | apply (const CT &data, CT &p, int N, float *bcLower, float *bcUpper) |
|
template<>
struct SolveFirstDerivInterp1D< float >
Definition at line 202 of file BsplineOneDimSolvers.h.
◆ apply()
static void apply |
( |
const CT & |
data, |
|
|
CT & |
p, |
|
|
int |
N, |
|
|
float * |
bcLower, |
|
|
float * |
bcUpper |
|
) |
| |
|
inlinestatic |
Definition at line 205 of file BsplineOneDimSolvers.h.
References copy(), and qmcplusplus::Units::force::N.
207 std::vector<double> data_d(
N), p_d(
N);
208 std::copy(data.begin(), data.end(), data_d.begin());
211 std::copy(bcLower, bcLower + 4, bcLower_d);
212 std::copy(bcUpper, bcUpper + 4, bcUpper_d);
216 std::copy(p_d.begin(), p_d.end(), p.begin());
void copy(const Array< T1, 3 > &src, Array< T2, 3 > &dest)
The documentation for this struct was generated from the following file: