How to swap row elements by increasing and decresing order.

1 visualización (últimos 30 días)
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

Respuesta aceptada

Walter Roberson
Walter Roberson el 22 de En. de 2016
sort(p, 'descending')
  2 comentarios
Triveni
Triveni el 22 de En. de 2016
Can you generate it by algorithm which i've tried??? by swap & interchange , store generated swaps.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Arduino Hardware en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by