I hope to have the version of unique() that uses isapprox() instead of isequal(). Such a version will be useful, for example, to pick unique floating point numbers. MATLAB has uniquetol() for that purpose.
Instead of creating a separate function, we may generalize unique() such that it accepts an "equality" function as an extra argument. Then we could provide isapprox() or other equality functions as the extra argument.