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

Function svd

src/backend/cpu/svd.cpp:83–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

81
82template<typename T, typename Tr>
83void svd(Array<Tr> &s, Array<T> &u, Array<T> &vt, const Array<T> &in) {
84 Array<T> in_copy = copyArray<T>(in);
85 svdInPlace(s, u, vt, in_copy);
86}
87
88} // namespace cpu
89} // namespace arrayfire

Callers

nothing calls this directly

Calls 1

svdInPlaceFunction · 0.70

Tested by

no test coverage detected