• Home
  • Raw
  • Download

Lines Matching refs:dydx

32     std::vector<Real> dydx(x.size(), 0);  in test_constant()  local
40 …auto sh = septic_hermite(std::move(x), std::move(y), std::move(dydx), std::move(d2ydx2), std::move… in test_constant()
51 dydx.resize(128, 0); in test_constant()
54 …auto csh = cardinal_septic_hermite(std::move(y), std::move(dydx), std::move(d2ydx2), std::move(d3y… in test_constant()
109 std::vector<Real> dydx(x.size(), 1); in test_linear() local
113 …auto sh = septic_hermite(std::move(x), std::move(y), std::move(dydx), std::move(d2ydx2), std::move… in test_linear()
133 dydx.resize(x.size(), 1); in test_linear()
137 …sh = septic_hermite(std::move(x), std::move(y), std::move(dydx), std::move(d2ydx2), std::move(d3yd… in test_linear()
148 dydx.resize(10, 1); in test_linear()
155 …auto csh = cardinal_septic_hermite(std::move(y), std::move(dydx), std::move(d2ydx2), std::move(d3y… in test_linear()
214 std::vector<Real> dydx(x.size()); in test_quadratic() local
217 dydx[i] = x[i]; in test_quadratic()
223 …auto sh = septic_hermite(std::move(x), std::move(y), std::move(dydx), std::move(d2ydx2), std::move… in test_quadratic()
248 dydx.resize(x.size()); in test_quadratic()
251 dydx[i] = x[i]; in test_quadratic()
257 …sh = septic_hermite(std::move(x), std::move(y), std::move(dydx), std::move(d2ydx2), std::move(d3yd… in test_quadratic()
271 dydx.resize(y.size()); in test_quadratic()
274 dydx[i] = i; in test_quadratic()
282 …auto csh = cardinal_septic_hermite(std::move(y), std::move(dydx), std::move(d2ydx2), std::move(d3y… in test_quadratic()
321 std::vector<Real> dydx(x.size()); in test_cubic() local
324 dydx[i] = 3*x[i]*x[i]; in test_cubic()
334 …auto sh = septic_hermite(std::move(x), std::move(y), std::move(dydx), std::move(d2ydx2), std::move… in test_cubic()
345 dydx.resize(8); in test_cubic()
351 dydx[i] = 3*i*i; in test_cubic()
355 …auto csh = cardinal_septic_hermite(std::move(y), std::move(dydx), std::move(d2ydx2), std::move(d3y… in test_cubic()
394 std::vector<Real> dydx(x.size()); in test_quartic() local
397 dydx[i] = 4*x[i]*x[i]*x[i]; in test_quartic()
412 …auto sh = septic_hermite(std::move(x), std::move(y), std::move(dydx), std::move(d2ydx2), std::move… in test_quartic()
420 dydx.resize(10); in test_quartic()
426 dydx[i] = 4*i*i*i; in test_quartic()
431 …auto csh = cardinal_septic_hermite(std::move(y), std::move(dydx), std::move(d2ydx2), std::move(d3y… in test_quartic()
465 std::vector<Real> dydx(n); in test_interpolation_condition() local
476 dydx[i] = dis(rd); in test_interpolation_condition()
483 auto dydx_copy = dydx; in test_interpolation_condition()
491 CHECK_ULP_CLOSE(dydx[i], s.prime(x[i]), 2); in test_interpolation_condition()