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

Function skew

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 3

af_skewFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected