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

Function solveLU

src/api/cpp/lapack.cpp:93–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91}
92
93array solveLU(const array &a, const array &piv, const array &b,
94 const matProp options) {
95 af_array out;
96 AF_THROW(af_solve_lu(&out, a.get(), piv.get(), b.get(), options));
97 return array(out);
98}
99
100array inverse(const array &in, const matProp options) {
101 af_array out;

Callers 3

TESTFunction · 0.50
solveLUTesterFunction · 0.50
solveLUTesterFunction · 0.50

Calls 3

af_solve_luFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected