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

Function approx1

src/api/cpp/approx.cpp:15–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13
14namespace af {
15array approx1(const array &yi, const array &xo, const interpType method,
16 const float offGrid) {
17 af_array yo = 0;
18 AF_THROW(af_approx1(&yo, yi.get(), xo.get(), method, offGrid));
19 return array(yo);
20}
21
22array approx2(const array &zi, const array &xo, const array &yo,
23 const interpType method, const float offGrid) {

Callers

nothing calls this directly

Calls 4

af_approx1Function · 0.50
arrayClass · 0.50
af_approx1_uniformFunction · 0.50
getMethod · 0.45

Tested by

no test coverage detected