how to sort only first column in matlab
    조회 수: 3 (최근 30일)
  
       이전 댓글 표시
    
X=0.5 1.0;0.1 2;2.5 4 output must be like 0.1 2;0.5 1.0;2.5 4
댓글 수: 0
채택된 답변
  Star Strider
      
      
 2016년 8월 27일
        Use the sortrows funciton:
X = [0.5 1.0;0.1 2;2.5 4];
Output = sortrows(X, 1)
Output =
          0.1            2
          0.5            1
          2.5            4
댓글 수: 0
추가 답변 (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!

