Find Unique values in array
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ali Tawfik
am 12 Mai 2020
Kommentiert: Ameer Hamza
am 13 Mai 2020
Hi all,
I am trying to create a new array contains ONLY the unique values (same values but not repeated) which in the following case are 90 0 45
I used unique function, however, the function also returns the same data as in x, but in sorted order. I DO NOT want them in sorted order,
Also, I would like to obtain the index of the unique values in the x
like index=[1,2,9]
clear all;
clc;
x=[90 0 0 90 90 90 90 90 45 0 0 0];
y=unique(x)
0 Kommentare
Akzeptierte Antwort
Ameer Hamza
am 12 Mai 2020
Bearbeitet: Ameer Hamza
am 13 Mai 2020
clc;
x=[90 0 0 90 90 90 90 90 45 0 0 0];
[y, idx] = unique(x, 'stable')
output
y =
90 0 45
idx =
1
2
9
4 Kommentare
Ameer Hamza
am 13 Mai 2020
Try try something like this
idx = [1 4];
for i=1:numel(idx)
z(:,:,i)=A(:,:,idx(i))
end
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!