how to sort variable of an array?

let suppose we have 3 varaibles A=45, B=54,C=23 and we stores data in matrix M=[A B C] i want to sort on basis of their numerical value like M=[B A C] dont want to change it in numerical form

1 Comment

Stephen23
Stephen23 on 12 Sep 2019
Edited: Stephen23 on 13 Sep 2019
"how to sort variable..:"
Variables in the workspace do not have an "order", so variables cannot be "sorted".
Elements of an array have an order, so array elements can be sorted.
What exactly are you trying to achieve?

Sign in to comment.

Categories

Tags

Asked:

on 12 Sep 2019

Answered:

on 13 Sep 2019

Community Treasure Hunt

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

Start Hunting!