本文介绍了在MATLAB中对数组进行排序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
matlab中是否有一个函数以降序对数组进行排序并递归它们的索引?
is there is a function in matlab that sort array in descending order and reurns the indices of them?
a=[88 33 99 2 11 32]
然后
b=[3 1 2 6 5 4]
推荐答案
[q b] = sort(a,'descend')
b数组将是您想要的.
in b array will be what you want.
这篇关于在MATLAB中对数组进行排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!