FloorPlanTransformation / util /mat /SortedUniqueAndCounts.m
rawanessam's picture
Upload 79 files
e9fe176 verified
function [uniqueValues, counts] = SortedUniqueAndCounts(values)
[uniqueValues, counts] = UniqueAndCounts(values);
[counts, ind] = sort(counts);
uniqueValues = uniqueValues(ind);
end