Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Center of repeatative/duplicate values in Matlab
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
I have a vector lik A = [1 1 1 1 1 2 2 2 2 2 3 3 3 3 3 3 3 ]. I want to get index of centre and its value fo this vector. How can i do that In matlab scirpt ?
The solution of above problem should be.
values = [1 2 3];
Centre_Index = [3 8 14 ];
Thanks in adavnce .
0 Kommentare
Antworten (2)
Ameer Hamza
am 14 Mär. 2020
x = [1 1 1 1 1 2 2 2 2 2 3 3 3 3 3 3 3 ];
indexes = [1 find(x(2:end) - x(1:end-1))+1 numel(x)];
indexes = floor(movmean(indexes, 2, 'Endpoints', 'discard'));
0 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!