Matlab函数备忘2
1.sort(),sortrows()#matlab codesort(A) 默认升序,列优先sort(A,'descend') 降序sort(A,1) 对每一列中的元素升序排列sort(A,2) 对每一行中的元素升序排列[A_sort,idx] = sort(A) A_sort表示排序后的结果,idx表示A_sort元素在A中的位置索引