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

Function svd

src/api/cpp/lapack.cpp:15–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13
14namespace af {
15void svd(array &u, array &s, array &vt, const array &in) {
16 af_array sl = 0, ul = 0, vtl = 0;
17 AF_THROW(af_svd(&ul, &sl, &vtl, in.get()));
18 s = array(sl);
19 u = array(ul);
20 vt = array(vtl);
21}
22
23void svdInPlace(array &u, array &s, array &vt, array &in) {
24 af_array sl = 0, ul = 0, vtl = 0;

Callers

nothing calls this directly

Calls 3

af_svdFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected