Is there a command ( like "sort" for example ) arranges vector elements ascending ,max, descending (humped shap)?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Mohammed AlThani
el 28 de Oct. de 2019
Comentada: Mohammed AlThani
el 28 de Oct. de 2019
Is there a command ( like "sort" for example ) arranges vector elements ascending ,max, descending (humped shap)?
6 comentarios
Respuesta aceptada
Stephen23
el 28 de Oct. de 2019
>> V = randi(99,1,23)
V =
93 68 76 74 39 65 17 70 4 28 5 10 82 69 32 95 4 44 38 76 79 19 49
>> Y = sort(V);
>> Z = [Y(1:2:end),fliplr(Y(2:2:end))]
Z =
4 5 17 28 38 44 65 69 74 76 82 95 93 79 76 70 68 49 39 32 19 10 4
Más respuestas (1)
Yuan Li
el 28 de Oct. de 2019
Yes. Use sort.
e.g.
a = [1,3,2,4];
b = sort(a,'ascend');% b = [1,2,3,4]
c = sort(a,'descend');% c = [4,3,2,1]
0 comentarios
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!