| 20 | } |
| 21 | |
| 22 | array approx2(const array &zi, const array &xo, const array &yo, |
| 23 | const interpType method, const float offGrid) { |
| 24 | af_array zo = 0; |
| 25 | AF_THROW(af_approx2(&zo, zi.get(), xo.get(), yo.get(), method, offGrid)); |
| 26 | return array(zo); |
| 27 | } |
| 28 | |
| 29 | array approx1(const array &yi, const array &xo, const int xdim, |
| 30 | const double xi_beg, const double xi_step, |
nothing calls this directly
no test coverage detected