How to delete Multiple of any Value in Array In MATLAB
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Med Future
le 27 Déc 2022
Commenté : Dyuman Joshi
le 27 Déc 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 commentaires
Réponse acceptée
Dyuman Joshi
le 27 Déc 2022
Modifié(e) : Dyuman Joshi
le 27 Déc 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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!