Borrar filtros
Borrar filtros

Combining two vectors of different elements in an order

3 visualizaciones (últimos 30 días)
I have two vectors >> n=[2 18 5 22 29]; >> m=[3 6 17 20 30]; I wanted a new vector mn, which contains both the elements of n and m vector in an order such as >> mn=[2 3 5 6 17 18 20 22 29 30]

Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 26 de Mayo de 2015
mn = sort([n(:)',m(:)']);

Más respuestas (0)

Categorías

Más información sobre Data Types 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