How to swap row elements by increasing and decresing order.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
p = [30 30 30 30 30 30 0 0 0 0 0 0 0 0 30 30 30 30 30 30]
I want to swap it like [30 30 30 30 30 30 30 30 30 30 30 30 0 0 0 0 0 0 0 0];
Np = length(M);
for p = Np/2: -1:2
for CP = p-1:-1:1
if M(1,CP) ~= M(1,CP+1)
M(1,CP) = M(1,CP+1)
end
end
end
0 commentaires
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Arduino Hardware dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!