How can I arrange an array in an ascending way?

2 visualizaciones (últimos 30 días)
M G
M G el 16 de Dic. de 2011
Hello MATLAB users,
If there are two arrays: a=[5 8 14 15 17 19 22 23 26 31 34 35 36 39]; and b=[25 30 34 42];, how can I create an array c including the mixture of a and b but arranged in an ascending way?
Thanks so much, Mehdi

Respuesta aceptada

Wayne King
Wayne King el 16 de Dic. de 2011
Hi, if they are row vectors as you have indicated
c = sort([a b],'ascend');

Más respuestas (0)

Categorías

Más información sobre Statistics and Machine Learning Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by