Keep proper Indexing after sorting
    3 ビュー (過去 30 日間)
  
       古いコメントを表示
    
I have a matrix like below
 fset(:,:,1) = rand(5,16); 
 fset(:,:,2) = rand(5,16);
 fset(:,:,3) = zeros(5,16);
 sorted_fset = sort(fset,3);
My problem is i have 999 small matrix in a big matrix like this means
 fset(:,:,i),i=1,2,3,4....999
I represent the each image actually, now when i sort the matrix it sort for me but i cannot recognize the index of each image.
Like in above case
 fset(:,:,3) will be fset(:,:,1)
but actually it was 3, so how i can recognize the image index after sorting in this case. if any confusion please comment
0 件のコメント
参考
カテゴリ
				Help Center および File Exchange で Shifting and Sorting Matrices についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!