Separate two groups of coordinate points array where one group of coordinate points are given?.
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
MD RESHAD UL HOQUE
il 30 Gen 2018
Risposto: Akira Agata
il 30 Gen 2018
I have a long set of coordinate points say (666624x2) of two groups (A, B). One group (say A) of coordinate points are given (5900 x 2). I have to split two group (A, B). How can I find the other group using the given group?.
Thanks
0 Commenti
Risposta accettata
Akira Agata
il 30 Gen 2018
dataAll = rand(100,2); % List of all coordinate points
dataA = dataAll(dataAll(:,1)>0.5,:);% Group A (part of dataAll)
idx = ismember(dataAll,dataA);
idx = all(idx,2);
dataB = dataAll(~idx,:); % Group B (part of dataAll)
0 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!