MCPcopy Create free account
hub / github.com/audeering/opensmile / SortDescending

Function SortDescending

src/newmat/sort.cpp:45–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43
44
45void SortDescending(GeneralMatrix& GM)
46{
47 REPORT
48 Tracer et("QuickSortDescending");
49
50 Real* data = GM.Store(); int maxi = GM.Storage();
51
52 if (maxi > DoSimpleSort) MyQuickSortDescending(data, data + maxi - 1, 0);
53 InsertionSortDescending(data, maxi, DoSimpleSort);
54
55}
56
57static Real SortThreeDescending(Real* a, Real* b, Real* c)
58{

Callers 1

SVDFunction · 0.85

Calls 2

MyQuickSortDescendingFunction · 0.85
InsertionSortDescendingFunction · 0.85

Tested by

no test coverage detected