MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / af_approx2_uniform

Function af_approx2_uniform

src/api/c/approx.cpp:242–255  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

240}
241
242af_err af_approx2_uniform(af_array *zo, const af_array zi, const af_array xo,
243 const int xdim, const double xi_beg,
244 const double xi_step, const af_array yo,
245 const int ydim, const double yi_beg,
246 const double yi_step, const af_interp_type method,
247 const float offGrid) {
248 try {
249 af_approx2_common(zo, zi, xo, xdim, xi_beg, xi_step, yo, ydim, yi_beg,
250 yi_step, method, offGrid, true);
251 }
252 CATCHALL;
253
254 return AF_SUCCESS;
255}
256
257af_err af_approx2_uniform_v2(af_array *zo, const af_array zi, const af_array xo,
258 const int xdim, const double xi_beg,

Callers 2

TEST_FFunction · 0.50
approx2Function · 0.50

Calls 1

af_approx2_commonFunction · 0.85

Tested by

no test coverage detected