| 27 | |
| 28 | template<typename T> |
| 29 | static inline af_array resize(const af_array in, const dim_t odim0, |
| 30 | const dim_t odim1, const af_interp_type method) { |
| 31 | return getHandle(resize<T>(getArray<T>(in), odim0, odim1, method)); |
| 32 | } |
| 33 | |
| 34 | af_err af_resize(af_array* out, const af_array in, const dim_t odim0, |
| 35 | const dim_t odim1, const af_interp_type method) { |