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

Function af_approx1_uniform

src/api/c/approx.cpp:116–127  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

114}
115
116af_err af_approx1_uniform(af_array *yo, const af_array yi, const af_array xo,
117 const int xdim, const double xi_beg,
118 const double xi_step, const af_interp_type method,
119 const float offGrid) {
120 try {
121 af_approx1_common(yo, yi, xo, xdim, xi_beg, xi_step, method, offGrid,
122 true);
123 }
124 CATCHALL;
125
126 return AF_SUCCESS;
127}
128
129af_err af_approx1_uniform_v2(af_array *yo, const af_array yi, const af_array xo,
130 const int xdim, const double xi_beg,

Callers 2

TEST_FFunction · 0.50
approx1Function · 0.50

Calls 1

af_approx1_commonFunction · 0.85

Tested by

no test coverage detected