How can I arrange an array in an ascending way?
조회 수: 1 (최근 30일)
이전 댓글 표시
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
댓글 수: 0
채택된 답변
Wayne King
2011년 12월 16일
Hi, if they are row vectors as you have indicated
c = sort([a b],'ascend');
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Cell Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!