MYUNIQUE

finds uniqe entries, indices and number of occurances of the unique elements
2,4K download
Aggiornato 20 giu 2007

Visualizza la licenza

MYUNIQUE is a function to find unique elements in a numeric vector in the order in which they appear first or last which is determined by "mode" (default is first). The function is also outputs the indices "ndx" of unique elements and number of occurances of that elements in "h".

% Example:
% >> a=[9 3 6 2 7 1 2 1 1 1 9 9 3 3];
% >> [b ndx h]=myunique(a)
% b =
%
% 9 3 6 2 7 1
% ndx =
%
% 1 2 3 4 5 6
% h =
%
% 3 3 1 2 1 4
%
% >> myunique(a,'last')
% ans =
%
% 6 7 2 1 9 3

Cita come

Mehmet OZTURK (2024). MYUNIQUE (https://www.mathworks.com/matlabcentral/fileexchange/15242-myunique), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2007a
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versione Pubblicato Note della release
1.0.0.0

Added property to find number of occurances.