Combining two vectors of different elements in an order

1 次查看(过去 30 天)
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]

采纳的回答

Andrei Bobrov
Andrei Bobrov 2015-5-26
mn = sort([n(:)',m(:)']);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Types 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by