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

Function transform

src/api/cpp/transform.cpp:16–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14namespace af {
15
16array transform(const array& in, const array& transform, const dim_t odim0,
17 const dim_t odim1, const interpType method,
18 const bool inverse) {
19 af_array out = 0;
20 AF_THROW(af_transform(&out, in.get(), transform.get(), odim0, odim1, method,
21 inverse));
22 return array(out);
23}
24
25} // namespace af

Callers

nothing calls this directly

Calls 3

af_transformFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected