| 283 | } |
| 284 | |
| 285 | af_err af_approx2_v2(af_array *zo, const af_array zi, const af_array xo, |
| 286 | const af_array yo, const af_interp_type method, |
| 287 | const float offGrid) { |
| 288 | try { |
| 289 | ARG_ASSERT(0, zo != 0); // need to dereference zo in next call |
| 290 | af_approx2_common(zo, zi, xo, 0, 0.0, 1.0, yo, 1, 0.0, 1.0, method, |
| 291 | offGrid, *zo == 0); |
| 292 | } |
| 293 | CATCHALL; |
| 294 | |
| 295 | return AF_SUCCESS; |
| 296 | } |
no test coverage detected