Sort a matrix with indexing

2 views (last 30 days)
A row matrix B=[21 43 23 65]. Now I want to sort them in ascending order and also want the order of their location. How to do this??? I want the output file look like: [21 23 43 65] and [1 3 2 4].

Accepted Answer

Walter Roberson
Walter Roberson on 27 Nov 2015
[sorted, order] = sort(B)
  1 Comment
PARTHA HALDAR
PARTHA HALDAR on 27 Nov 2015
for B=[21 43 23 65] i have the outfile as reported but if B=[21 43 21 65] then two answers should come one is [1 3 2 4] and another one is [3 1 2 4]. This is not coming...

Sign in to comment.

More Answers (0)

Categories

Find more on Shifting and Sorting Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!