how to sort only first column in matlab

조회 수: 3 (최근 30일)
abdul wahab  aziz
abdul wahab aziz 2016년 8월 27일
답변: Star Strider 2016년 8월 27일
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

채택된 답변

Star Strider
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개)

카테고리

Help CenterFile Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by