How to delete Multiple of any Value in Array In MATLAB
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Med Future
il 27 Dic 2022
Commentato: Dyuman Joshi
il 27 Dic 2022
Hello,I Have the following dataset, I want to delete the value which are multiple of any value present in array.
For example in this array 70 is present which is multiple of 35.
0 Commenti
Risposta accettata
Dyuman Joshi
il 27 Dic 2022
Modificato: Dyuman Joshi
il 27 Dic 2022
y=load('multiple.mat').Value;
%all the different value present in the array
z=unique(y)
for j=unique(y)
y( (rem(y,j)==0) & y~=j )=[];
end
y
5 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!